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
{{ message }}
This repository has been archived by the owner on Nov 22, 2018. It is now read-only.
In the data I'm playing with, it's useful to contain groups of non-indexable integers, like storing one graph dataset per record. To handle this situation, I intend to use blobs and then pull out each int with encoding/binary.Varint().
Then I wondered how cool would it be if ql extended the idea of the already supported []uint8 (blobs) and added support for arrays of all data types.
Thoughts? Abuse?
Thanks.
The text was updated successfully, but these errors were encountered:
The proposal probably enables some new and nice things, I think. Making it a bit more orthogonal (support all QL types) and extending the {index,slice} operation to support it (ATM works only on strings) is feasible, I guess. Also, it's probably a lot of work...
However, I'm not sure if making QL such an exotic SQL dialect is a good idea or not. You might want to try to convince me by some great usage example(s) ;-)
I guess it depends where you want to take QL. Having a native sql engine is handy as it eliminates the CGO cross compilation complexities of SQLite. I was hoping that QL would also be the Go native SQL engine for Go data, but I can appreciate that this may not be the intended direction.
While the structures looks useful. They are composite structure, It will be totally a waste of resource to store the building materials and the resulting house.
What I am saying, you can easily obtain []ints by collecting the ints from your store. But If we start storing []int reasoning about relationship between your data models will be hard .
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In the data I'm playing with, it's useful to contain groups of non-indexable integers, like storing one graph dataset per record. To handle this situation, I intend to use blobs and then pull out each int with encoding/binary.Varint().
Then I wondered how cool would it be if ql extended the idea of the already supported []uint8 (blobs) and added support for arrays of all data types.
Thoughts? Abuse?
Thanks.
The text was updated successfully, but these errors were encountered: