Skip to content

sainttttt/gemmaJSON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gemmaJSONlogo gemmaJSON - simdjson bindings for Nim

nimble install gemmaJSON

Benchmarks

Test was for deserialization of reddit comment json dumps, checking if the entry was from a specific subreddit

name ................. min time      avg time    std dv  times
sainttttt/gemmaJSON .. 13.291 s      13.386 s    ±0.110   x15
treeform/jsony ....... 28.280 s      28.659 s    ±0.366   x15
nim std/json ......... 72.095 s      73.678 s    ±1.436   x15

Usage

var jsonObj = parseGemmajsonObj("""{"cat": {"a": ["woof", ["meow"], 2]}}""")

echo jsonObj.getStr("/cat/a/0")
# woof

echo jsonObj.getStr("/cat/a/1/0")
# meow

echo $jsonObj["cat"]["a"][0]
# woof

echo $jsonObj
# {"cat":{"a":["woof",["meow"],2]}}

var j = jsonObj.toJsonNode.pretty
echo j.pretty

# {
#   "cat": {
#     "a": [
#       "woof",
#       [
#         "meow"
#       ],
#       2
#     ]
#   }
# }

for e in jsonObj.getElement("/cat/a"):
  echo $e

# woof
# ["meow"]
# 2

About

JSON parser library for Nim based on simdjson bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages