YAJL-ObjC +流解析器 +压缩包
我成功使用 yajl-objc 以及 ASIHTTPRequest 在 iPhone 项目中,它进行网络访问并提取和解析 JSON 数据。 ASIHTTPRequest 默认允许 gzip 压缩的 HTTP 响应,这很好,但我使用的是 YAJL 的流解析器功能,它理所当然地会阻塞 gzip 压缩的数据。我可以等到 HTTP 请求完成,然后取消 gzip 并解析响应,但我在这里追求速度,并希望在下载时解析 gzip 数据。
是否可以动态解压缩数据,解析其中的 JSON,然后忘记那块 gzip 数据?
如果最后一部分可以解决,那么此设置似乎将有助于伟大的系统:
- YAJL 是 ASIHTTPRequest 周围最快的 JSON 解析器之一,
- 很简单,异步
- 响应主体可以压缩,节省在线流量
- JSON 可以解析,无需将整个树加载到受限的设备内存中
任何指导将不胜感激!
I'm successfully using yajl-objc along with ASIHTTPRequest in an iPhone project that does network access and pulls down and parses JSON data. ASIHTTPRequest allows gzipped HTTP responses by default, which is great, but I'm using the streaming parser ability of YAJL and it rightfully chokes on gzipped data. I can wait until the HTTP request has finished then un-gzip and parse the response, but I'm going for speed here and would like to parse the gzipped data as it downloads.
Is it possible to un-gzip data on the fly, parse the JSON within, then forget about that chunk of gzipped data?
If this last part could be solved, this setup seems like it would make for a great system:
- YAJL is one of the fastest JSON parsers around
- ASIHTTPRequest is easy and asynchronous
- Response bodies could be gzipped, saving on-the-wire traffic
- JSON could be parsed without loading the whole tree into constrained device memory
Any guidance would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是:http://groups.google.com/group/ asihttprequest/browse_thread/thread/ee2e44379b181439/7699dd200780cd32#7699dd200780cd32
YES: http://groups.google.com/group/asihttprequest/browse_thread/thread/ee2e44379b181439/7699dd200780cd32#7699dd200780cd32