Skip to content
This repository has been archived by the owner on Sep 19, 2022. It is now read-only.

Latest commit

 

History

History
34 lines (25 loc) · 532 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 532 Bytes

Memcached Cli

Available commands

// R/W access
php vendor/bin/mcc set [key] [value]
php vendor/bin/mcc get [key]
php vendor/bin/mcc delete [key]

// Insights
php vendor/bin/mcc stats
php vendor/bin/mcc search [pattern]

// Dev tooling
php vendor/bin/mcc faker [prefix]
php vendor/bin/mcc flush 

Getting started

# Install via composer
composer require fortrabbit/memcached-cli:^1.0.0-beta
# Tell the cli the memcached server 
export MEMCACHE_HOST=localhost

# List commands
php vendor/bin/mcc