Skip to content

Instantly share code, notes, and snippets.

@phith0n
Created May 31, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phith0n/3dd73573ef3b08561faf to your computer and use it in GitHub Desktop.
Save phith0n/3dd73573ef3b08561faf to your computer and use it in GitHub Desktop.
查看记录下来的谷歌搜索关键词
local result = ""
local ips = red:keys("*")
for k1,ip in pairs(ips) do
result = result .. ip .. ":\n"
local words = red:smembers(ip)
for k2,word in pairs(words) do
result = result .. "\tSearch: " .. word .. "\n"
end
end
ngx.header.content_type = 'text/plain';
ngx.say(result)
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment