I need to do some more homework but here are results of a quick test
with my sample index.
var query = session.LuceneQuery<Equipment>("Equipment/
ByEquipmentId")
.WaitForNonStaleResults(TimeSpan.FromMinutes(5))
.OrderBy("Number")
.SelectFields<JObject>("Number")
.Take(400);
var results = query.ToList();
long? previousNumber = null;
long currentNumber = 0;
foreach (var doc in results)
{
currentNumber = Convert.ToInt64((string)doc["Number"]);
if (previousNumber.HasValue && previousNumber >
currentNumber)
Console.WriteLine("{0} is not less than {1}",
previousNumber, currentNumber);
previousNumber = currentNumber;
}
Executing query '' on index 'Equipment/ByEquipmentId' in 'http://
localhost:8080'
Query returned 400/110000 results
1001668533 is not less than 100193850
1004137010 is not less than 100417948
1004907599 is not less than 100494370
1006552480 is not less than 100655266
1009780851 is not less than 101012970
1010869914 is not less than 101098319
1011009389 is not less than 101112001
1011459554 is not less than 101147620
1012297405 is not less than 101241531
1012864749 is not less than 101304672
1016975239 is not less than 101704038
1017684807 is not less than 10178525
1018479854 is not less than 101856051
1019847996 is not less than 101994306
1021725418 is not less than 102192047
1022402211 is not less than 102254161
1023631993 is not less than 102379439
1027135778 is not less than 10277498
1028913941 is not less than 102902349
1031267611 is not less than 103151640
1034250196 is not less than 103425331
1036155819 is not less than 103634138
1038087628 is not less than 103823248
1041929232 is not less than 104219256
1042266896 is not less than 104250464
1042606488 is not less than 104261224
1042859665 is not less than 104291057
1043245804 is not less than 104364899
1046885822 is not less than 104689804
1046922101 is not less than 104721542
1051652884 is not less than 105178771
1052335496 is not less than 105234184
1055561594 is not less than 10555746
1057067780 is not less than 105717069
1060768064 is not less than 10610358
1062322891 is not less than 106234695
1063049049 is not less than 106318458
Found 110000 results and they are not stale