-
Notifications
You must be signed in to change notification settings - Fork 75
Do you have plans to add new types eg JSON? #181
Comments
In a sense, JSON is just a string/blob. What should adding type JSON provide? |
@cznic I mean equal Postgres json, where support query example |
That looks like a lot of work. Suitable PRs will be accepted. |
What about leveraging v8 to help support JSON parsing? |
I believe a JSON parser is the easy and small part of this issue. |
If someone else can write the other necessary gears, which I have no idea about, I think I can prototype a JSON parser in maybe a day or so. |
correct me if I'm wrong but in postgres it's nice to have this on the query-language level because you reduce the amount of context switching between database and application layer (i.e. don't have to filter the results with application code). Is this also the case for embedded databases? Here it seems to be just a question of cleaner processing seperaration. I only did a quick search but these to packages seem to do some of the lifting. So I think this + marshaling as a blob get's you quite far already without this having to be supported by the DB layer. https://github.com/elgs/jsonql |
No description provided.
The text was updated successfully, but these errors were encountered: