Google News
logo
CouchDB - Interview Questions
What is the use of sequences? How do you do sequences?
Sequences are often used to ensure unique identifiers for each row in a database table. Sequences are hard to realize with replication. CouchDB generates unique ids from its own, and you can specify your own as well, so you don't need a sequence here. If you use a sequence for something else, you might find a way to express in CouchDB in another way.
Advertisement