MySQL Installation

MySQL Installation 2- Types of installation packages 1- MySQL Installation using generic binaries In this we can select the version (older version of MySQL) 2- MySQL Installation using YUM on RHEL Which is available with Repositories, supported latest version (APT=GET) Through Putty we connect by… Read More

COMPRESSION IN CASSANDRA

COMPRESSION IN CASSANDRA Operators can set up compression on a per-table basis with Cassandra. By compressing the SSTable in user-configurable compression chunk_length_in_kb, compression minimizes the amount of data on disk. The CPU cost of compressing data is only required when the SSTable is written since… Read More

OBJECT ORIENTED PROGRAMMING IN PYTHON

OBJECT ORIENTED PROGRAMMING IN PYTHON Object-Oriented Programming (OOP) is a powerful paradigm that allows developers to structure their code in a more organized and modular way. In Python, OOP is implemented through classes and objects, which encapsulate data and behavior into reusable components. Python is… Read More

FUNCTIONS IN PYTHON

FUNCTIONS IN PYTHON FUNCTION: ▪️ A function is a block of code that performs a specific task. ▪️ Functions are defined by using the def keyword which follows by function name and parentheses which may have parameters. ▪️ Any function can accept zero or more… Read More