Package detail

memcache-pp

RomanBurunkov5.6kMIT0.3.3

Memcache for node

memcache, memcached, cache, promise

readme

Memcache ++

Memcache ++ Memcache module for Node js. Formerly forked from the memcache-plus So you can find many refs to the memcache-plus in the docs or code itself.

What makes it "Plus"?

  • Native support for Promises or Callbacks
  • Elasticache auto discovery baked in
  • Actively developed and used
  • Focus on cleanliness and simplicity
  • Command buffering - start issuing commands right away, memcache-plus will automatically wait until connected then flush that buffer
  • Ability to disable with just a flag on init - sounds trivial, but nice to test with memcache off without altering any of your code
  • Compression built in on a per item basis
  • Cached retrieve (coming soon!) - simply pass a function for retrieving a value and a key and memcache-plus will do the whole "check key, if it exists return it, if not run the function to retrieve it, set the value, and return it" for you
  • Support for binaries (coming soon!) which the other memcache libraries for Node don't support

Memcache-plus proudly developed in Washington, D.C. by SocialRadar.

changelog

0.3.3 (2021-02-08)

  • Forked from memcached-plus 0.2.22
  • Removed ramda and lodash dependencies.
  • Add support for Unix socket connection.
  • Fixed tests(cachedump could fail in some cases).
  • Made lib and tests code lighter.
  • Removed spare deffered.key = key lines.