91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

nginx怎么使用ctx實現數據共享

發布時間:2022-03-21 15:07:31 來源:億速云 閱讀:270 作者:iii 欄目:web開發

這篇文章主要介紹了nginx怎么使用ctx實現數據共享的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇nginx怎么使用ctx實現數據共享文章都會有所收獲,下面我們一起來看看吧。

環境: init_worker_by_lua, set_by_lua, rewrite_by_lua, access_by_lua, content_by_lua, header_filter_by_lua, body_filter_by_lua, log_by_lua, ngx.timer., balancer_by_lua

這個 Lua 表可以用來存儲基于請求的 Lua 環境數據,其生存周期與當前請求相同 (類似 Nginx 變量)。

參考下面例子,

location /test {

     rewrite_by_lua_block {

         ngx.ctx.foo = 76

     }

     access_by_lua_block {

         ngx.ctx.foo = ngx.ctx.foo + 3

     }

     content_by_lua_block {

         ngx.say(ngx.ctx.foo)

     }

 }

訪問 GET /test 輸出

79

也就是說,ngx.ctx.foo 條目跨越一個請求的 rewrite (重寫),access (訪問),和 content (內容) 各處理階段保持一致。

每個請求,包括子請求,都有一份自己的 ngx.ctx 表。例如:

location /sub {

     content_by_lua_block {

         ngx.say("sub pre: ", ngx.ctx.blah)

         ngx.ctx.blah = 32

         ngx.say("sub post: ", ngx.ctx.blah)

     }

 }

 location /main {

     content_by_lua_block {

         ngx.ctx.blah = 73

         ngx.say("main pre: ", ngx.ctx.blah)

         local res = ngx.location.capture("/sub")

         ngx.print(res.body)

         ngx.say("main post: ", ngx.ctx.blah)

     }

 }

訪問 GET /main 輸出

main pre: 73

sub pre: nil

sub post: 32

main post: 73

這里,在子請求中修改 ngx.ctx.blah 條目并不影響父請求中的同名條目,因為它們各自維護不同版本的 ngx.ctx.blah。

內部重定向將摧毀原始請求中的 ngx.ctx 數據 (如果有),新請求將會有一個空白的 ngx.ctx 表。例如,

location /new {

     content_by_lua_block {

         ngx.say(ngx.ctx.foo)

     }

 }

 location /orig {

     content_by_lua_block {

         ngx.ctx.foo = "hello"

         ngx.exec("/new")

     }

 }

訪問 GET /orig 將輸出

nil

而不是原始的 "hello" 值。

任意數據值,包括 Lua 閉包與嵌套表,都可以被插入這個“魔法”表,也允許注冊自定義元方法。

也可以將 ngx.ctx 覆蓋為一個新 Lua 表,例如,

ngx.ctx = { foo = 32, bar = 54 }

當用在 init_worker_by_lua* 環境中,這個表與當前 Lua 句柄生命周期相同。

ngx.ctx 表查詢需要相對昂貴的元方法調用,這比通過用戶自己的函數參數直接傳遞基于請求的數據要慢得多。所以不要為了節約用戶函數參數而濫用此 API,因為它可能對性能有明顯影響。

而且由于元方法“魔法”,不要在 lua 模塊級別試圖使用 "local" 級別的 ngx.ctx ,例如 worker-level data sharing。下面示例是糟糕的:

-- mymodule.lua

local _M = {}

-- 下面一行的 ngx.ctx 是屬于單個請求的,但 ctx 變量是在 Lua 模塊級別

-- 并且屬于單個 worker 的。

local ctx = ngx.ctx

 function _M.main()

     ctx.foo = "bar"

 end

 return _M

應使用下面方式替代:

-- mymodule.lua

 local _M = {}

 function _M.main(ctx)

     ctx.foo = "bar"

 end

 return _M

就是說,調用者對 ctx 表調用應通過函數傳參方式完成。

關于“nginx怎么使用ctx實現數據共享”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“nginx怎么使用ctx實現數據共享”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

济南市| 桃园市| 寿光市| 洪泽县| 南召县| 赣州市| 江华| 正安县| 铜川市| 黄石市| 太湖县| 台湾省| 临清市| 北辰区| 建阳市| 兴仁县| 尼玛县| 乌拉特后旗| 漾濞| 嘉兴市| 梁平县| 红原县| 灵台县| 扬中市| 东海县| 五莲县| 吉安市| 丽水市| 饶阳县| 安新县| 乳源| 惠州市| 监利县| 敦化市| 奉贤区| 嵊州市| 扶绥县| 宣城市| 毕节市| 阿克苏市| 甘谷县|