Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.22 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Sorting and latest records in ElasticSearch
  2. select * from table1 where a="b" order by myprimarykey desc;
  3.        
  4. {
  5.     "query" : {
  6.         "term" : { "a" : "b" }
  7.     },
  8.     "sort" : [
  9.         { "myprimarykey" : "desc"} }
  10.     ]
  11. }