You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Zentropy Laravel is a simple and powerfulLaravel wrapper for MailMug's Zentropy PHP client — a high-performanceRedis alternative. Easily store, retrieve, and manage key-value data usingTCP or Unix socket connections directly from your Laravel applications.
ZENTROPY_HOST – the host of your Zentropy server (default 127.0.0.1)
ZENTROPY_PORT – TCP port of your server (default 6383)
ZENTROPY_PASSWORD – optional password for TCP
ZENTROPY_UNIX_SOCKET – optional Unix socket path
Usage
useMailMug\ZentropyLaravel\Facades\Zentropy;// Set a valueZentropy::set('foo','bar');// Get a value$value = Zentropy::get('foo');// Check if a key exists$exists = Zentropy::exists('foo');// Delete a keyZentropy::delete('foo');// Ping the server$ping = Zentropy::ping();
License
This project is licensed under the MIT License.
About
Laravel wrapper for MailMug's zentropy-php package (Redis alternative)