Skip to content

Instantly share code, notes, and snippets.

View chayanbawn's full-sized avatar
🏠
Working from home

Chayan Bawn chayanbawn

🏠
Working from home
View GitHub Profile
B-Tree Index best performs with comparision opratior <, <=, >=, =, IN, BETWEEN, IS NULL, IS NOT NULL
Hash Index can only handle Equality(=) operator. (Better than B-Tree)
Generalized Inverted (GIN) useful for multi-valued column.
Generalized Search Tree (GIST) useful in indexing geometric and full-text search.

Install RabbitMQ on Ubuntu 18.04

==================================================

Update the package list


  • sudo apt-get update
  • sudo apt-get upgrade -y