Hei!
I’ve found the superb service at http://openkeyval.org for storing simple key value from any webapps. From the docs it seems like it allows 64kBytes of data, put from what I see it’s only possible to store 512 bytes.
See the example below (press load to load data from my key, and save to store back into key)
http://jsfiddle.net/larsi/h8Mbg/
Any ideas what might be causing the limit?
Regards Lars Erik
the problem is that you are doing
GETrequest instead ofPOST, to send a big portions of data you have to usePOST. This code worked on my Chrome, but it could be only implementation of Chrome, so other browsers could not support such data transfer viaGETupdate
there is an issue regarding your problem and here is the link of existing issue on openkeyval’s github:
https://github.com/shinyplasticbag/openkeyval/issues/14