How To Install php-solr-all-dev on Debian 12

Learn how to install php-solr-all-dev on Debian 12 with this tutorial. php-solr-all-dev is PHP extension for communicating with Apache Solr server

Introduction

In this tutorial we learn how to install php-solr-all-dev on Debian 12.

What is php-solr-all-dev

php-solr-all-dev is:

The Apache Solr PHP extension is an extremely fast, light-weight, feature-rich library that allows PHP applications to communicate easily and efficiently with Apache Solr server instances using an object-oriented API.

It effectively simplifies the process of interacting with Apache Solr using PHP and it already comes with built-in readiness for the latest features.

The extension has features such as built-in, serializable query string builder objects which effectively simplifies the manipulation of name-value pair request parameters across repeated requests. The response from the Solr server is also automatically parsed into native php objects whose properties can be accessed as array keys or object properties without any additional configuration on the client-side.

Its advanced HTTP client reuses the same connection across multiple requests and provides built-in support for connecting to Solr servers secured behind HTTP Authentication or HTTP proxy servers. It is also able to connect to SSL-enabled containers.

PECL Solr 2+ is only compatible with Apache Solr Server 4.0+.

This is empty package that depends on all PHP versions.

There are three methods to install php-solr-all-dev on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install php-solr-all-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install php-solr-all-dev using apt-get by running the following command:

sudo apt-get -y install php-solr-all-dev

Install php-solr-all-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install php-solr-all-dev using apt by running the following command:

sudo apt -y install php-solr-all-dev

Install php-solr-all-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install php-solr-all-dev using aptitude by running the following command:

sudo aptitude -y install php-solr-all-dev

How To Uninstall php-solr-all-dev on Debian 12

To uninstall only the php-solr-all-dev package we can use the following command:

sudo apt-get remove php-solr-all-dev

Uninstall php-solr-all-dev And Its Dependencies

To uninstall php-solr-all-dev and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove php-solr-all-dev

Remove php-solr-all-dev Configurations and Data

To remove php-solr-all-dev configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge php-solr-all-dev

Remove php-solr-all-dev configuration, data, and all of its dependencies

We can use the following command to remove php-solr-all-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge php-solr-all-dev

Dependencies

php-solr-all-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install php-solr-all-dev package on Debian 12 using different package management tools: apt, apt-get and aptitude.