tedious / Stash

The place to keep your cache.
http://www.stashphp.com
BSD 3-Clause "New" or "Revised" License
961 stars 133 forks source link

BlackHole driver isn't documented #301

Open martinsik opened 8 years ago

martinsik commented 8 years ago

I was looking for something similar to Doctrine's ArrayCache and I stumbled upon BlackHole driver which does more or less what I need. It's not the same as ArrayCache because this driver discards all records and does no caching at all but for testing purposes it's sufficient.

However, BlackHole driver isn't documented anywhere.

qcho commented 8 years ago

take a look at the Ephemeral Driver. http://www.stashphp.com/Drivers.html#ephemeral Indeed BlackHole could use some trivial documentation.

martinsik commented 8 years ago

Thanks! That's exactly the same as ArrayCache.