Download the PHP package mix/redis without Composer

On this page you can find all versions of the php package mix/redis. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package redis

OpenMix 出品:https://openmix.org

Mix Redis

PHP Redis for use in multiple execution environments, with support for FPM, CLI, Swoole, WorkerMan, and optional connection pool (coroutine)

可在各种环境中使用的 PHP Redis,支持 FPM、CLI、Swoole、WorkerMan,可选的连接池 (协程)

技术交流

知乎:https://www.zhihu.com/people/onanying
官方QQ群:284806582 , 825122875 敲门暗号:redis

Installation

Quick start

注意:协程环境中,不可在并发请求中使用单例

Start Pool

Swoole 协程环境中,启动连接池

连接池统计

Transaction Multi & Pipeline

Multi

事务块内的多条命令会按照先后顺序被放进一个队列当中,最后由exec命令原子性(atomic)地执行。

Pipeline

客户端将执行的命令写入到缓冲中,最后由exec命令一次性发送给redis执行返回。

Transaction Watch

监听值的变化,如果执行时有变化则事务失败,无变化则事务成功。

Logger

日志记录器,配置后可打印全部SQL信息

$logger 需实现 Mix\Redis\LoggerInterface

License

Apache License Version 2.0, http://www.apache.org/licenses/


All versions of redis with dependencies

PHP Build Version
Package Version
Requires php Version >=7.2.0
ext-redis Version *
mix/object-pool Version ~3.0.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package mix/redis contains the following files

Loading the files please wait ....