Is it safe to have non-null characters in the padding area of a simdjson padded string(view)?
Simdjson https://github.com/simdjson/simdjson requires a specified simdjson::SIMDJSON_PADDING
bytes of padding at the end of the JSON data.
Is it safe to have non-null characters in the padding area of a simdjson padded string(view)?
Simdjson https://github.com/simdjson/simdjson requires a specified simdjson::SIMDJSON_PADDING
bytes of padding at the end of the JSON data.
Passing double value to JSON string having a root header
I am trying to create a JSON string content by passing a double typed value (named time
). My JSON content is also containing a root header object (named UserAddTime
). I would like to add time
in Minutes
object.
Read each json record and output field name / field value
I have the following json object and in c# I want to read each record and output the name of the field and the value of the field. I know how to do it by pulling into c# prefined classes, but I am wondering if I can do it without knowing the field names in advance? Not sure how I would go about that in c#?