Elasticsearch tutorial for beginners using Python
http://nitin-panwar.github.io/Elasticsearch-tutorial-for-beginners-using-Python/
Elasticsearch tutorial for beginners using Python Inserting a document: #Now let's store this document in Elasticsearch res = es.index(index='megacorp',doc_type='employee',id=1,body=e1) ... Retrieving a Document: This is easy in Elasticsearch. ... Deleting a document: res=es.delete(index='megacorp',doc_type='employee',id=3) ... Search Lite: A GET is fairly simple—you get back the document that you ask for. ... Filter operator: ... Full text search ... Phrase Search ... Aggregations ...
Inserting a document: #Now let's store this document in Elasticsearch res = es.index(index='megacorp',doc_type='employee',id=1,body=e1) ...
Retrieving a Document: This is easy in Elasticsearch. ...
Deleting a document: res=es.delete(index='megacorp',doc_type='employee',id=3) ...
Search Lite: A GET is fairly simple—you get back the document that you ask for. ...
Filter operator: ...
Full text search ...
Phrase Search ...
Aggregations ...
DA: 51 PA: 46 MOZ Rank: 63