-
Notifications
You must be signed in to change notification settings - Fork 267
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
Can save() be used as an update? #63
Comments
Currently "update/merge" operation is not yet supported, but it's easy to implement by yourself. |
Thanks for the quick response. Just to confirm, is having a number in the key supported? |
You can have number in the key, just not use pure number cause it's really confusing and error-prune. |
Awesome thanks 👍. Yep my 🔑 looks like this |
Learnt much from the chat. Thanks @Eyesonly88 and @sunnylqm . I think this issue can be closed, maybe a label "recommendation" added to it right so that it gives way for other issues 😄 |
First of all, thank you very much for your amazing library 👍
I've got a question regarding using the
save()
operation. In my use case, I'm saving by key and the key is the date. I want to update therawData
without overriding the existing data.For example:
Is that possible to do currently? or do you recommend a way of achieving this?
One way I thought I can do it is by doing a load of the data first, then appending it manually, then storing it back.
Also as a side note, my keys have numbers in them and it seems to work (you mentioned underscores are not permitted), so I'm guessing using numbers in keys is supported ?
The text was updated successfully, but these errors were encountered: