Redis
 sql >> Baza danych >  >> NoSQL >> Redis

Nginx lua redis plik cookie nie ustawia się

może zapomniałeś wyświetlić inne rzeczy;

nie mam otwartego środowiska; ale nasze środowisko jest podobne.

poniższy kod jest moim testem i działa idealnie

to jest nginx.conf

location /cookie {
    default_type "text/plain";
    lua_code_cache off;
    content_by_lua_file test.lua;
} 

to jest skrypt lua

local redis = require "redis"
local red = redis.connect('192.168.1.51',6379)

local ip = ngx.var.remote_addr
local secs = ngx.time()
local uid_key = ip .. secs
local uid = (uid_key)
local cookie = ngx.var.cookie_uid
local red_cookie = red:hget("cookie:"..uid, uid)


local args = ngx.req.get_headers()
local date_time = ngx.http_time(secs)

if cookie == nil or cookie ~= red_cookie then
    ngx.header['Set-Cookie'] = "path=/; uid=" .. uid 
    local res, err = red:hmset("cookie:".. uid,
    "uid", uid, "date_time", date_time,
    "user-agent", args["user-agent"])

    if not res then
        ngx.say("failed to set cookie: ", err)
    end 
end

czy wyświetlisz więcej informacji o swoim kodzie?



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Jak ustawić hasło dla Redis?

  2. Trwałe dane z Redis do MongoDB dla magazynu danych

  3. Jak skonfigurować Redis w niestandardowej przestrzeni nazw jako pamięć podręczna i MQ w aplikacji internetowej ServiceStack przy użyciu mapy struktury

  4. Łączność SSL z Redis za pomocą StackExchange.Redis

  5. Komunikat prasowy:ScaleGrid ogłasza usługę hostingową dla Redis™ na AWS