Build Status

NAME

memcached-cli - Interactive/Batch CLI for Memcached

SYNOPSIS

Run an interactive CLI:

memcached-cli <HOST[:PORT] | /path/to/socket> [OPTIONS]
memcached-cli --addr|-a <HOST[:PORT] | /path/to/socket> [OPTIONS]
memcached-cli [OPTIONS]  # Connect to 127.0.0.1:11211

These above turns into interactive mode like below:

memcached@SERVER:PORT>
memcached@SERVER:PORT> \h    # show help
memcached@SERVER:PORT> \d    # display slabs info

Run as batch script:

memcached-cli [options] <command> [<args>]

Show Help/Manual:

# For general usage
memcached-cli -h|--help
memcached-cli --man

# For available commands
memcached-cli help
memcached-cli help <command>

DESCRIPTION

This script runs an interactive CLI or batch utility for Memcached.

In interactive mode, it connects to a specified Memcached server and interactively executes each command you run.

In batch mode, you can execute any command which you can do in interactive mode.

COMMANDS

NOTE:

A couple of features of following commands derives from memcached/memcached-tool

OPTIONS

SEE ALSO

App::Memcached::CLI::Main, memcached(1), http://www.memcached.org/

AUTHORS

YASUTAKE Kiyoshi yasutake.kiyoshi@gmail.com

LICENSE

Copyright (C) 2015 YASUTAKE Kiyoshi.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. That means either (a) the GNU General Public License or (b) the Artistic License.