Add support for using orjson instead of the stdlib json if orjson is installed · Issue #6 · ptmcg/littletable · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open source package orjson is much faster than the stdlib package.
orjson.dumps compares to json.dumps, but uses whitespace-optimized output by default, so need to qualify use of streaming-related keyword args.
orjson.loads compares to json.loads, compatibility TBD