How to Install and Uninstall php56-php-pecl-chdb.x86_64 Package on CentOS Stream 8

Last updated: April 29,2024

1. Install "php56-php-pecl-chdb.x86_64" package

In this section, we are going to explain the necessary steps to install php56-php-pecl-chdb.x86_64 on CentOS Stream 8

$ sudo dnf update $ sudo dnf install php56-php-pecl-chdb.x86_64

2. Uninstall "php56-php-pecl-chdb.x86_64" package

Please follow the step by step instructions below to uninstall php56-php-pecl-chdb.x86_64 on CentOS Stream 8:

$ sudo dnf remove php56-php-pecl-chdb.x86_64 $ sudo dnf autoremove

3. Information about the php56-php-pecl-chdb.x86_64 package on CentOS Stream 8

Last metadata expiration check: 5:27:27 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : php56-php-pecl-chdb
Version : 1.0.3
Release : 6.el8.remi
Architecture : x86_64
Size : 21 k
Source : php56-php-pecl-chdb-1.0.3-6.el8.remi.src.rpm
Repository : remi-safe
Summary : A fast database for constant data
URL : http://pecl.php.net/package/chdb
License : PHP
Description : CHDB (constant hash database) is a fast key-value database for constant data,
: realized by using a memory-mapped file and thus providing the following
: functionalities:
: - Extremely fast initial load, regardless of the size of the database.
: - Only the pages of the file which are actually used are loaded from the disk.
: - Once a page is loaded it is shared across multiple processes.
: - Loaded pages are cached across multiple requests and even process recycling.
:
: A typical use of CHDB is as a faster alternative to defining many PHP
: constants.
:
: CHDB is internally implemented as a hash-table using a perfect hashing
: function, thus guaranteeing worst case O(1) lookup time.