# 세계에서 제일 빠른 JSON 파서 만들기

> Clean Markdown view of GeekNews topic #2728. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=2728](https://news.hada.io/topic?id=2728)
- GeekNews Markdown: [https://news.hada.io/topic/2728.md](https://news.hada.io/topic/2728.md)
- Type: news
- Author: [kunggom](https://news.hada.io/@kunggom)
- Published: 2020-08-27T16:34:12+09:00
- Updated: 2020-08-27T16:34:12+09:00
- Original source: [tanstaafl.dev](https://tanstaafl.dev/20200821-worlds-fastest-json-parser.html)
- Points: 17
- Comments: 3

## Topic Body

JSON 파서 중에서 특출나게 빠른 것으로는 simdjson( https://news.hada.io/topic?id=2632 )이 있지만, 혹시 특정 사용례에 한해서 이것보다 더 빠른 파싱을 할 수는 없을까요? JSON으로 수신되는 암호화폐 호가 데이터를 simdjson보다 더 빠르게 파싱하는 C++ 코드를 작성한 경험에 관한 포스팅을 소개합니다. (한국어) 이 코드가 simdjson보다 더 빠를 수 있는 까닭은 사용례가 특정 분야를 다루는 작성자의 코드에 한정되어 있기 때문입니다. 결국 일반화된 것보다 특정 분야에 특화된 것이 더 공격적인 최적화가 가능함을 다시 한번 알 수 있군요.

## Comments



### Comment 2723

- Author: xguru
- Created: 2020-08-27T17:02:46+09:00
- Points: 1

와 훌륭합니다. 재미도 있구요. 전 이 블로그를 구독! 하려고 했으나 RSS가 없어서 실패 ㅠ

### Comment 2728

- Author: kunggom
- Created: 2020-08-27T19:58:04+09:00
- Points: 1
- Parent comment: 2723
- Depth: 1

위 블로그에 있는 https://tanstaafl.dev/20200816-market-data-parser.html 이 글도 흥미롭더군요. 그런데 아직 글이 이 2개밖에 없어서...

### Comment 2722

- Author: kunggom
- Created: 2020-08-27T16:34:37+09:00
- Points: 1

참고 - simdjson 소개글:

https://news.hada.io/topic?id=2632
