Created
October 21, 2021 07:03
-
-
Save PureKrome/e970b5fdf99c82706f12b0fcf72fa9fc to your computer and use it in GitHub Desktop.
Trying to use Elasticsearch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Get a list of all indicies | |
GET /_cat/indices | |
-- | |
GET /_cat/aliases <-- get the aliases to the indicies | |
-- normal searching | |
GET /listings/_search | |
{ | |
"query": { | |
"match_all": {} | |
} | |
} | |
------------------- | |
-- for-rent/doncaster-vic-3108/houses/{#}-bedroom(s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment