Hi,

Let's say I have documents like this: {date: '2008/06/09 13:52:11
+0000', name:'Roger'}
I'd like to find documents matching a name, and sorted by date. I know
that for sorting documents by date, the 'date' field has to be in the
key emitted by the view.

In this case, what to I have to emit if I need to see only documents
which name is 'Roger' but sorted by date ?
I would do something like:
emit([doc.name, doc.date], null);

Can I query this view without having to specify the date ? I need
these documents to be sorted by date, because I'll paginate on them.

Thanks,
Nicolas

Reply via email to