anilmaurya / fast_jsonparser

Fastest Json parser for Ruby, wrapper for simdjson
MIT License
307 stars 10 forks source link

Symbol keys #3

Closed StefanoMartin closed 4 years ago

StefanoMartin commented 4 years ago

This gem is really interesting.

I noticed that it does not seems to have an option for "symbol_keys" (having symbols for hash keys). Do you plan to have it in the future?

anilmaurya commented 4 years ago

Hi @StefanoMartin

Thank you for your interest. This gem parses JSON data only, parsing ruby hash is not supported.

noteflakes commented 4 years ago

I think the OP meant having the parsed result with symbols keys...

anilmaurya commented 4 years ago

Hi @ciconia Thanks for clarification. It make sense to have symbol keys for parsed result.

I release 0.2.0 with symbol keys.

StefanoMartin commented 4 years ago

That sounds great! Thank you!