-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Converting JsonValue to String #39
Comments
Do I understand correctly that you would like to read the value of JsonValue json = parser.parse(...);
Iterator<Map.Entry<String, JsonValue>> it = json.objectIterator();
Map.Entry<String, JsonValue> field1 = it.next();
System.out.println(field1.getValue().asString()); // this prints '{ "field2": "xx" }' |
yes, it looks like simdjson has implemented this capability,thanks |
for me
|
The snippet I provided in the previous comment was just to verify if I understand the issue correctly. I'm not saying that currently this line works according to the comment: System.out.println(field1.getValue().asString()); // this prints '{ "field2": "xx" }' |
gotcha. are there plans to make |
I think we can try to add it. However, I'm currently busy working on #35, so I can't promise when I'll be able to do that. |
I see. That would be wonderful if you could make it happen at some point. I'll be waiting for it :) |
hello @piotrrzysko. a gentle reminder that this feature still highly anticipated and appreciated :) |
Simdjson cannot compress structures
for example json
{ "field1": { "field2": "xx" } }
I cannot get the compressed value for field1, value is { "field2": "xx" }
The text was updated successfully, but these errors were encountered: