Elasticsearch
Interact with ElasticSearch in Go
In this post, we will go over for how to interact with ElasticSearch in Go.
First we need to trigger up Elasticsearch in our machine. This can be done by docker .
docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:7.9.2