TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Fast JSON Processing in Real-Time Systems: Simdjson and Zero-Copy Design

22 点作者 danthelion4 个月前

2 条评论

danthelion4 个月前
At Estuary, we’re creating a real-time data streaming platform that doesn’t rely on Kafka and uses JSON as the primary data format stored in an object storage. Many people are interested in how we achieve millisecond-level latency in our data streams, so we will be publishing a series of articles on this topic!
hinkley4 个月前
One of the bottlenecks of NodeJS is the json encoding and decoding time. And the way isolates work don’t allow you to offload the parsing, and provide a bottleneck for sending data to other threads.<p>Anything that reduces that provides a good deal more headroom for Amdahl’s law.