restful接口优化
在移动网络中访问restful接口,如果返回数据包较大,对接口的性能影响很大,内容传输损耗大量时间;
需要对json数据进行压缩。
可以通过nginx的gzip或者web框架自带的压缩功能、压缩中间件实现。nginx 配置:
gzip on;
gzip_min_length 2048;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/json;