uWSGI features you want to abuse
Posted | archive
按照这个帖子,挖个坑
现代网站架构一般不能缺这几个东西:
- serialization tool like Protobuf, Apache Thrift, JSON, etc. 跨进程、服务器共享数据
- Pub-sub system, or RPC system 远程跨语言调用功能
- async background workers 用于处理繁重数据
- task queue/message queue 用于离线消息缓存和TTL支持,以及一些routing和过滤功能
- signal system 跨进程异步操作
- Key-value based cache or memory db 公用共享数据
- task scheduler or cronjob 周期性任务
而这一切都可以在一个强大小巧稳定的Web服务器主进程中实现。这就是适合我这种偏执狂滥用的东西——uWSGI。
以后慢慢写了
Comments