Giter Site home page Giter Site logo

Comments (4)

zhuizhuhaomeng avatar zhuizhuhaomeng commented on June 26, 2024

1 What happens when a key expires?
When and how and after how long is the memory replaced by this value freed and is it freed at all?
Nothing happens when a key expires. The expired key is still there if it is not replaced by another new add/set operation.

2 When memory is full, does the set method try to delete expired keys or can it delete keys that haven't expired yet?
There are different APIs.
When memory is full, the dict:set() will delete keys that is not expired yet.
And the dict:safe_set() will not delete keys that is not exipred.

from lua-nginx-module.

IlyaIndigo avatar IlyaIndigo commented on June 26, 2024

Thank you for the answer.
I understand correctly, if I want memory not to overflow I should take care of periodic calls of flush_expired() myself ?

http {
    ,,,,
    lua_shared_dict my 1m;
    init_by_lua_block {
        local function mem_free()
            ngx.shared.my:flush_expired()
        end
        require("resty.concurrent.scheduler").every("1h", mem_free)
    }
    ....
}

P.S. The “resty.concurrent.scheduler” module is a figment of ChatGPT's imagination.

from lua-nginx-module.

zhuizhuhaomeng avatar zhuizhuhaomeng commented on June 26, 2024

Nope.
What you need to do is:

  1. config a reasonable shdict size
  2. choose the right API like set or safe_set
  3. set a reasonable expired time

If the shdict still overflows, then tweak the above steps.

from lua-nginx-module.

IlyaIndigo avatar IlyaIndigo commented on June 26, 2024

But if I set the test key to 3600 sec.
And no one will access (:get("test")) it after expiration, it will hang in memory forever until nginx is rebooted.
And so it is with every key.

Or did I misunderstand?

from lua-nginx-module.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.