Questions tagged [couchdb]
Apache CouchDB is an open source database that focuses improved usability and on being a database that completely embraces the web.
15 questions
0
votes
1
answer
57
views
Approach for Querying Relational Data
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"
...
0
votes
0
answers
67
views
Drag and drop and handling huge amount of documents to update position
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 ...
4
votes
0
answers
2k
views
NoSQL data modelling for multi level nested documents
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 ...
2
votes
1
answer
1k
views
Database rollover handling patterns
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 ...
2
votes
1
answer
2k
views
Conflict resolution for two-way sync offline sync
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 ...
3
votes
2
answers
3k
views
Accepting the UUID collision risk based on number of clients
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 ...
2
votes
2
answers
2k
views
Is eventual consistency a wrong solution for e-commerce applications?
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 ...
6
votes
1
answer
2k
views
Solutions for iOS collaborative sync (iCloud CoreData, CouchDB)?
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 ...
4
votes
1
answer
724
views
Multi-platform design with Delphi, Java, MySQL and CouchDB [closed]
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 (...
66
votes
14
answers
24k
views
Is there any reason not to go directly from client-side Javascript to a database?
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 ...
2
votes
1
answer
278
views
In-memory DB to perform intersects on set slices
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 ...
3
votes
3
answers
2k
views
Is it a good idea to use CouchDB?
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 ...
2
votes
2
answers
2k
views
Provide a URL to a CouchDB document attachment without giving the username/password?
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 ...
10
votes
5
answers
5k
views
Writing Web "server less" applications [duplicate]
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 ...
1
vote
2
answers
243
views
What's the least intrusive method for creating a backup of a couchdb database?
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 ...