persistent-cache 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +1 -1
- data/lib/persistent-cache/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -6,7 +6,7 @@ Values in the cache have a default freshness period of 15465600 ms. This can be
|
|
6
6
|
|
7
7
|
Note that when using a back-end that requires marshalling (e.g. sqlite) the string encoding for []= and [] needs to be the same (e.g. UTF-8, US-ASCII, etc.) If the coding does not match, [] will not be able to find the entry during lookup and will return nil. The easiest way to accomplish this with a ruby script is by adding the following shell directive at the top of your main.rb
|
8
8
|
```
|
9
|
-
# encoding: utf-8
|
9
|
+
# encoding: utf-8
|
10
10
|
```
|
11
11
|
|
12
12
|
This gem is sponsored by Hetzner (Pty) Ltd - http://hetzner.co.za
|