Hi,
I am using the gevent loop.

I am updating a dictionary every 60 seconds.  Its a global dict that all
workers should read.  Content should stop being served if a key is not
present.  It does work but I see that a tiny about of content is still
being sever.  If a do a global restart then no content is severed but
prefer not to do that.  Below is how I reload and I use target='workers'.
Is there anything I can do to stop the leakage?

    from uwsgidecorators import *
    @rbtimer(60,target='workers')
    def load_redis(signum):
        loadRedisDict()
_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to