Elastic Search
Introduction to Elastic Search Elastic Search is a full-text search engine which can be used as NoSQL database and can be used as analytics engine. It is schema-less, easy to scale, near real-time...
Introduction to Elastic Search Elastic Search is a full-text search engine which can be used as NoSQL database and can be used as analytics engine. It is schema-less, easy to scale, near real-time...
What is Searchkick? Searchkick is a smart and intillegent search engine Rubygems that creates quicker search results based on user search activity. Before using Searchkick make sure Elasticsearch...
Introduction jQuery is a JavaScript library created by John Resig in 2006 with an objectives Write less, do more. The main features of jQuery are event handling, Ajax interactions, animations, tra...
Metaprogramming in Ruby Metaprogramming is a programming concept which treats other programs as their data and computer programs are written in such a way that is executed at runtime instead of co...
Setup Rails 5 with mongoid gem At first we need to install MongoDB in our system, the steps to install MongoDB is descripted in my previous blog. Confirm mongoDB is installed by browsing http://lo...
Introduction to MongoDB MongoDB is a open source document-oriented NoSQL database used for high volume data storage. If database is not already created switch to the database and insert data into...
Install MongoDB Community Edition on Unbuntu 18.04 (Bionic) Import the MongoDB public GPG Key from https://www.mongodb.org/static/pgp/server-4.2.asc wget -qO - https://www.mongodb.org/static/pgp/s...
Polymorphism in Ruby The term polymorphism means having many forms. In Ruby, polymorphism is carried out by using Inheritance. Polymorphism is achieved by using method overriding. class Animal ...
Inheritance in Ruby Inheritance is the feature of OOP in which characteristics & behaviours of one class inherits into another class. The class which is inheriting behaviour is called subclass...
Notes on various features and functions of Active Record Model Query Methods obj = User .where(email: 'info@mydomain.np') .where('id = 2') .where('id = ?', 2) .order(:tag_line) .order(t...