free cloud data stores that use get/post? [closed]

拥有回忆 提交于 2019-12-03 02:42:16

问题


I know that there are other key/value stores similar to http://openkeyval.org out there but i cannot remember their names.

Please enlighten me.

i need the following features:

  • free
  • can be used via 100% clientside code
  • fast and easy to integrate with

edit:
dropped the security requirement, since its not very important to me and was skewing the answers towards self-hosted solutions.

found another service:
http://rastajs.errorjs.com/

this one is easy to use but seems to mangle my values by removing all the spaces!


回答1:


I needed something like that, so I've built this: KVStore.io, a simple key/value API based storage service

It's still under heavy development (it's an alpha version...) but I'm using it to store some stuffs (like website marketing forms) and it's working nicely...




回答2:


Parse.com's data storage api has a really wonderful jquery library ( https://github.com/srhyne/jQuery-Parse ) that makes it extremely easy to have simple key/value storage from your front-end javascript.




回答3:


OpenKeyval is open-source, so you can host it yourself internally and add whatever access limitations you like.

CouchDB is basically OpenKeyval on steroids. It provides a RESTful JSON API than can be accessed from any environment that allows HTTP requests (i.e., JavaScript) but you'll have to host it yourself since there aren't any public-facing CouchDB servers (that I know of).

And since you're looking for a list:

  • Amazon SimpleDB
  • Hypertable
  • Cassandra
  • Hadoop
  • Ringo
  • ThruDB
  • CouchDB
  • HBase



回答4:


StackMob or Parse if you want a (client-side) JavaScript API with user management, facebook/twitter integration, data store (with geospatial), and push notifications.

StackMob also lets you host your website.

For more flexibility, less service lock-in, and cheaper scalability: I would suggest CouchDB (though you would likely still use a hosting service like Cloudant). CouchDB can host your website, and provides a HTTP API for storing data, to which your client-side JavaScript can make REST calls.




回答5:


Besides Parse, StackMob and Cloudant, there are other solutions:

  • Firebase provides a free 100MB cloud backend with REST and JS API,
  • MongoHQ offers 512MB free instance of MongoDB with REST API,
  • Google Cloud Datastore with 1GB free storage is another option.


来源:https://stackoverflow.com/questions/9024819/free-cloud-data-stores-that-use-get-post

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!