-
Notifications
You must be signed in to change notification settings - Fork 13
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
PouchDB #77
Comments
check how works http://cordova.apache.org/#about with PouchDB |
From the PouchDB website it says "you can use PouchDB within Apache Cordova":
PouchDB can use a number of adapters that allow it to use different underlying browser storage mechanisms, so I'd say in this case it's using Cordova's SQLite. |
Interestingly PouchDB is also a CouchDB client so we should be able to use the PouchDB API as the abstraction layer for switching between a remote CouchDB server or local storage database. |
Interesting request. We'll think about possible/further steps. |
I've just checked the PouchDB internals. In fact, we can use the PouchDB as a communication layer for CouchDB and have ability to work offline as a bonus... Would you interested to contribute? Let's discuss this in details |
Yep definitely interested, but not sure at this stage whether the project I'm working on will use a CouchDB-based solution or another persistence technology. Should know next week, so I'll let you know. |
Sure. We've been using the CouchDB for many different projects. Feel free to ask for help. Anyway just let me know. |
Somebody's already done some work on making PouchDB more Ember-like here |
Yes, but it doesn't use ember-data. |
We're interested in using PouchDB to provide offline persistence in a way that will sync up to the server when the client comes online. At this early stage I think we'd need an abstraction layer between Ember Data and the underlying CouchDB (via HTTP) or PouchDB (via its JavaScript API).
The text was updated successfully, but these errors were encountered: