Skip to content

renrenche/memcached-cli

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

memcached-cli

A simple memcached CLI tool, with SASL supported. Built upon memjs.

Build Status npm License

Installation

# npm
npm install -g memcached-cli
# yarn
yarn global add memcached-cli

Usage

Run memcached-cli host:port to enter interactive shell. If host and port is not specified, localhost:11211 will be used.

If you use SASL auth, run memcached-cli username:password@host:port.

get

Get the value of a key

> get <key>

set

Set the value of a key, default expires(s) is 0

> set <key> <value> [expires]

add

Set the value of a key, fail if key exists

> add <key> <value> [expires]

replace

Overwrite existing key, fail if key not exists

> replace <key> <value> [expires]

delete

Delete a key

> delete <key>

flush

Flush all data

> flush

stats

Show statistics

> stats

memcached-cli is built upon memjs. Visit memjs documentation for more information.

License

MIT

About

A simple memcached CLI tool with SASL support.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%