sorting - How to sort huge data in spring data mongodb -


i have collection contains lots of document(about 10 million).how can sort these documents without using aggregation framework ?

here want use code :

pageable pageable = new pagerequest(pagenumber, howmany, sort);                 query.with(pageable);  


Comments

Popular posts from this blog

python - Referencing Data From a 2D Histogram -

c# - Derived UserControl layout resets after build -

php - MySQL LIMIT results with INNER JOIN with more than 2 tables -