Elasticsearch
A statically generated elasticsearch blog built with Next.js and Markdown
Queries
the goal behind learning concepts is to execute the query and get results from the index. The Search API allows you to perform a search query and return the search hits that match the query
Text Analysis
We'll delve into analyzers. With a custom analyzer, you can define how the document fields behave before storing or during search time later. You have great control over how document fields are used in your queries to make your search more accurate and efficient. We'll first learn the tokenizers, and then the filters
Indexing & Mappings
We will start learning about the Elasticsearch by looking at the core of the Elasticsearch – Indexing. We'll also delve into concepts like templates, aliases and mappings
Scraping Data
A walk through of basic web scraping in Node.js to retrieve job requisitions from Monster site. It's interesting to see how easy it could be scrape useful information from human-readable HTML pages with little effort
Downloading & Installing
A brief write-up about preparing your environment. Includes setting up elasticsearch in your local/remote linux based environment. Also need kibana as it has UI for interacting with elasticsearch