Posts

Showing posts from July, 2018

Connecting To Elastic Search With Dotnet Nest Helper Package

Elasticsearch is a search engine based on Lucene. It provides a distributed, multitenant-capable full-text search engine with an HTTP web interface and schema-free JSON documents by the time of writing this post ES is the most popular search engine and the 8th DBMS    the best thing about elastic search is that you just need to send data to the engine and it handles everything it self and you can extract any information from its popular tool , kibana , to show some insights to your clients or managers. ES supports many programming languages and we are going to see how we can use Nest  , the dotnet client provided by ES to connect to ES throughout dotnet . if you want to learn NEST you need to go over the documentations of ES and Nest , but if you want to use ES really quickly ,you can begin using my repository on github , you can use it to manage your connection to ES and use a few helpful methods to make it easier to interact with data. this package is made on top of nest clie