Search code examples
couchdbcouchdb-mango

Is possible to sort a view in CouchDB?


I'm new in CouchDB and I'm wondering if is possible and how is possible to sort a view in CouchDB.

PS: I'm using CouchDB 3.0.0


Solution

  • Yes, it is possible to sort views. In fact, all views are always sorted. It's impossible to not sort a view.

    Each view is sorted according to the collation rules for the key emitted from the map function.