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 Oct 18, 2019. It is now read-only.
As part of our effort to introduce Jackson, the following methods on the Database class need to be deprecated:
saveDocument
bulkSaveDocument
deleteDocument
getDocument
Ideally, the Database should work with POJOs that are converted to JSON. For example, to save an object of type Entity, the following should transparently create a JSON representation that is written to the database:
Entity entity = ...
database.save(entity);
// entity now contains the updated _rev attribute
The text was updated successfully, but these errors were encountered:
As part of our effort to introduce Jackson, the following methods on the
Database
class need to be deprecated:Ideally, the Database should work with POJOs that are converted to JSON. For example, to save an object of type
Entity
, the following should transparently create a JSON representation that is written to the database:The text was updated successfully, but these errors were encountered: