mongoosejs / mongoose-text-search

MongoDB 2.4 text search support for mongoose
154 stars 9 forks source link

Supporting offset and sort options #10

Open huevosdeoro opened 10 years ago

huevosdeoro commented 10 years ago

Very useful plugin. Thanks!

Are there plans to support a offset and sort option? I would like to paginate full text search results based on a specified sort order.

nschloe commented 9 years ago

+1

poksme commented 9 years ago

Useful plugin indeed.

I agree that the offset option would really be useful, but I understand the opinionated score sorting.

One dirty way of achieving paginated results with score sorting would be to pass an id list of previously fetched items in a $nin condition query in the filter option. (see http://mongoosejs.com/docs/api.html#query_Query-nin )