Advantages of sqlite3 vs CouchDB for an application like a personal feed reader? -
say wanted build feed reader downloads rss , atom feeds local computer , lets view them locally. respective advantages , disadvantages of using couchdb or sqlite3 datastore such application?
good summary rsp. without knowing more requirements, it's hard 1 better suited use case. 1 clear advantage sqlite provides is has simpler installation , administration. library, it's linked application , installed along application. no separate database install , configure. 1 of features makes database libraries, sqlite , berkeley db attractive, , possibly preferable database servers.
just add list of considerations, berkeley db , berkeley db java edition database libraries may want consider. berkeley db (written in c) offers choice of using schema-free key-value pair api, pojo-like java api or sqlite-compatible sql api. berkeley db java edition (100% java) offers java apis key-value pairs, java collections or pojo-like object persistence. berkeley db , sqlite tend products of choice people looking embedding data management functionality inside of application.
disclaimer: product manager berkeley db, i'm little biased. :-)
Comments
Post a Comment