When developing I use @tools.ormcache() or @tool.ormcache_multi(multi=x) to gain performance.
From time to time I need to clean caches. For this I use my_model.clear_caches().
When we are in Gunicorn mode does clean_caches notify all worker to automatically clean their own cache, or do I have to do some other calls? Is there some latency?
This is not really clear or maybe I missed some documentation.