Networking
Networking
SÜMEYYE KAYNAK
OUTLINE
ElasticSearch
ELASTICSEARCH
In the word search, not all data is searched. Results can be found quickly through the
created index list.
COMPANIES USING ELASTICSEARCH
Term Documents
1 The old night keeper the keep in the town And <6>
2 In the big old house in the big old gown. Big <2> <3>
THE
3 INVERTED
The house in the INDEX
town had the big old keep. Dark <6>
4 Where the old night keeper never did sleep. Did <4>
5 The night keeper keeps the keep in the night. Gown <2>
6 And keeps in the dark and sleeps in the light. Had <3>
House <2> <3>
6 document to index In <1> <2> <3> <5> <6>
Keep <1> <3> <5>
Keeper <1> <4> <5>
Term Documents Keeps <1> <5> <6>
Sleeps <6> Light <6>
The <1> <2> <3> <4> <5> <6> Never <4>
Town <1> <3> Night <1> <4> <5>
Where <4> Old <1> <2> <3> <4>
Sleep <4>
TERMINOLOGY
Replicas: Elasticsearch allows a user to create replicas of their indexes and shards.
Replication not only helps in increasing the availability of data in case of failure, but
also improves the performance of searching by carrying out a parallel search
operation in these replicas.
ADVANTAGES
Elasticsearch does not have multi-language support in terms of handling request and
response data (only possible in JSON) unlike in Apache Solr, where it is possible in
CSV, XML and JSON formats.
ELASTIC SEARCH-INSTALLATION
CONNECT
GET AND POST METHODS
/test/demo_form.php?name1=value1&name2=value2
GET METHOD
POST METHOD
/test/demo_form.php
POST METHOD
DIFFERENCE BETWEEN A GET AND POST
ELASTIC SEARCH
MAPPING CONCEPTS ACROSS SQL AND ELASTIC SEARCH