プリーズパッケージの完全な初心者ガイド


predisはデフォルトでどんな追加のC拡張も必要としません、しかし、それはオプションとしてPhpireisで対にされることができます.
このプロジェクトに関する詳細はよくある質問にあります.

主な特徴
Support for Redis from 2.0 to 6.0.
Support for clustering using client-side sharding and pluggable keyspace distributors.
Support for redis-cluster (Redis >= 3.0).
Support for master-slave replication setups and redis-sentinel.
Transparent key prefixing of keys using a customizable prefix strategy.
Command pipelining on both single nodes and clusters (client-side sharding only).
Abstraction for Redis transactions (Redis >= 2.0) and CAS operations (Redis >= 2.2).
Abstraction for Lua scripting (Redis >= 2.6) and automatic switching between EVALSHA or EVAL.
Abstraction for SCAN, SSCAN, ZSCAN and HSCAN (Redis >= 2.8) based on PHP iterators.
Connections are established lazily by the client upon the first command and can be persisted.
Connections can be established via TCP/IP (also TLS/SSL-encrypted) or UNIX domain sockets.
Support for Webdis (requires both ext-curl and ext-phpiredis).
Support for custom connection classes for providing different network or protocol backends.
Flexible system for defining custom commands and override the default ones.


Predisのインストールと使用方法
このライブラリは、作曲家を使用してプロジェクトの依存関係をより簡単に管理するためにPackagistで見つけることができます.各リリースの圧縮アーカイブgithubで利用可能です.

ライブラリの読み込み
PREDISはPHPのオートローディング機能に依存し、必要に応じてファイルをロードし、PSR - 4標準に準拠します.自動読み込みは、依存関係が作曲家を通じて管理されるときに自動的に処理されますが、自動ロード機能を持たないプロジェクトやスクリプトで独自の自動ローダを活用することもできます.
A Complete Beginners Guide of Predis Package
Laravel 8.x Cursor Based Pagination Example