From 7a66ffbe9afe2837bcdc421a4577b8a156bbce80 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Thu, 6 Oct 2016 19:43:43 -0700 Subject: [PATCH] Added a short description for the Ephemeral driver to the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index c32267b..2537a8c 100644 --- a/README.md +++ b/README.md @@ -102,6 +102,9 @@ $stash = Stash\Cache::make('apcu'); #### Ephemeral +The Ephemeral driver caches items in a PHP array that exists in memory only for +the lifetime of the script. + ```php $stash = Stash\Cache::make('ephemeral'); ```