simdjson icon indicating copy to clipboard operation
simdjson copied to clipboard

Parsing gigabytes of JSON per second : used by Facebook/Meta Velox, the Node.js runtime, ClickHouse, WatermelonDB, Apache Doris, Milvus, StarRocks

Results 120 simdjson issues
Sort by recently updated
recently updated
newest added

### Discussed in https://github.com/simdjson/simdjson/discussions/1393 Originally posted by **daverigby** January 14, 2021 Hi all, As per subject, I'm wondering what's the most efficient way to use simdjson to simply check an...

Fixes #1763 I chose the "dynamic" route :) It is a bit more complex than a more static solution, but it has the advantage of requiring just two lines of...

Hi folks! We need to retrieve a lot of float information from JSON files but the only get() helper we found in your lib is the get_double() which returns an...

Some users would like simdjson to help build JSON files. See discussion at https://github.com/simdjson/simdjson/discussions/2086 cc @jkeiser

enhancement

Hi! I have recently been doing some tests using `riscv_vector.h` and still can't find any tests in real projects, only examples cited in the references below. I don't know how...

A few days ago, @jkeiser added templatized `get` methods (https://github.com/simdjson/simdjson/pull/643) to json objects. I'd like to request that go a bit further than primitives, and support user defined `from_json` and...

design issues
on demand

I have JSON dump documents larger than 4GB. Is it possible to modify the library to be able to parse those documents? I do want to only parse a subtree...

enhancement

Though we need better documentation and investigation, it seems likely that we could use yyjson as a faster fallback than our current fallback. My understanding is that @jkeiser wrote the...

question
design issues
performance
research
discussion

For C++20 users, we support `std::ranges` somewhat under the DOM API but it is undocumented. ```C++ #include "simdjson.h" #include #include using namespace simdjson; int main(void) { auto cars_json = R"(...

When deciding whether or not to update my version of simdjson in ZippyJSON, one of the big factors is security. I'm not necessarily interested in new APIs or features, but...