Skip to main content

Questions tagged [couchdb]

Apache CouchDB is an open source database that focuses improved usability and on being a database that completely embraces the web.

0 votes
1 answer
57 views

Setup Consider the following models (pseudo-code) Place: type: const = "Place" id: str name: str lat: float lon: float # other fields Event: type: const = "Event" ...
niko's user avatar
  • 111
0 votes
0 answers
67 views

I'm having a series of data as documents in a document db (CouchDB) Sample of a document looks like below { _id: xxx _rev: xxx data: xxx position: 1 } These documents displays in a web front-end ...
inckka's user avatar
  • 129
4 votes
0 answers
2k views

What kind of NoSql data modelling is best suitable for the following requirement? This can be visualised (NoSQL-Document) as a Collection of Records where each Record contains nested Documents.The ...
KDR's user avatar
  • 153
2 votes
1 answer
1k views

I have a question regarding the design of an application where the database system has a rollover. To clarify the context : the database system (a cloudant instance) is fed with sensor data by an iot ...
joel's user avatar
  • 23
2 votes
1 answer
2k views

How do you manage two-way synchronization between a 'main' database server and many 'secondary' servers, in particular conflict resolution, assuming a connection is not always available(offline ...
Dumindu Madushanka's user avatar
3 votes
2 answers
3k views

After reading some questions about the probability of UUID collisions it seems like collisions although unlikely, are still possible and a conflict solution is still needed. Therefore I am wondering ...
SystematicFrank's user avatar
2 votes
2 answers
2k views

I'm reading about eventual consistency in couchDB. I'm somewhat confused by the term and its consequences on an application. Let's say I'm building a distributed e-commerce website where monetary ...
Songo's user avatar
  • 6,663
6 votes
1 answer
2k views

I'm developing an iOS app where one of the features will be allowing users to share and collaborate on data (e.g. lists). From everything I've read and based on the way that iCloud CoreData sync works ...
mluisbrown's user avatar
4 votes
1 answer
724 views

What are the most obvious drawbacks to this idea for an enterprise(ish) model using the following technologies. Browser based and native developed GUI using Delphi to connect to Datasnap server (...
Peter Turner's user avatar
  • 6,985
66 votes
14 answers
24k views

Possible Duplicate: Writing Web “server less” applications So, let's say I'm going to build a Stack Exchange clone and I decide to use something like CouchDB as my backend store. If I use their ...
Chris Smith's user avatar
2 votes
1 answer
278 views

I have a specific programming need where I need to efficiently store large sorted sets in memory, query them for ranges, and intersect them against other sets that are also queried for ranged. I am ...
IamIC's user avatar
  • 151
3 votes
3 answers
2k views

Is it a good idea to use CouchDB for a web application that is going to be platform agnostic (from tablet to PC): The app is a big form which I need to be able to modify at will. I also need to scan ...
Lunatikzx's user avatar
2 votes
2 answers
2k views

I posted this question on DBA, but it got closed and was never reopened even after I rewrote the whole thing to be more specific. I think its more appropriate for programmers anyway :) Background ...
cs_brandt's user avatar
  • 185
10 votes
5 answers
5k views

TL;DR What are the prospects of writing applications which are completely based on a REST database server (CouchDB) and web applications which directly access the DB instead of having a web server in ...
crodjer's user avatar
  • 1,039
1 vote
2 answers
243 views

We're looking to create regular backups of a couchdb database, to ship offsite. What's the least intrusive way to obtain these - ideally without interrupting or significantly slowing down performance ...
blueberryfields's user avatar