You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to introduce a proxy caching plugin, but there are several choices.
Based on Nginx's built-in proxy cache in ngx_http_proxy_module, it store data on disk.
Based on lua_shared_dict in ngx-lua-module, it store data on memory.
Based on external storage such as redis and other redis-like storage system.
Each option has its own scenario, but i think option 1 supports more functionality and less code needs to be implemented. In addition, I'd perfer to abstract these options into a plugin and then by parameters to distinguish.
What do you think of?
The text was updated successfully, but these errors were encountered:
I perfer the option 1, which is more stable and easier to learn.
and one more thing, @agile6v you can send a [DISCUSS] email to mailinglist such like architecture selection topic.
Hi,
I want to introduce a proxy caching plugin, but there are several choices.
Each option has its own scenario, but i think option 1 supports more functionality and less code needs to be implemented. In addition, I'd perfer to abstract these options into a plugin and then by parameters to distinguish.
What do you think of?
The text was updated successfully, but these errors were encountered: