GGGourav Goyatindevrav.hashnode.dev·Jan 30, 2021 · 7 min readBasic Operations in ElasticsearchWhat is Elasticsearch ? Elasticsearch is an open-source, highly scalable, full-text search and analytics engine. Its major advantage is that being a NoSQL database, it is very quick in data retrieval in comparison to the traditional relational databa...00
GGGourav Goyatindevrav.hashnode.dev·Jan 12, 2021 · 3 min readHow to create virtual environment in PythonWhile working on a new python project, it might happen that you need to install a new version of a package whose older version is already being used by another python project. If you install the new version system wide, it may create compatibility is...00
GGGourav Goyatindevrav.hashnode.dev·Jan 10, 2021 · 5 min readAliasing, Shallow Copy and Deep Copy in PythonIn python, a list can be assigned to a variable in many ways, we will learn about the following three: Aliasing Shallow Copy Deep Copy Let us see the differences one by one. We will take a list original_list and will create new_list using above met...00