You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-__Jetbrains__ * for providing us a free IDE licence
31
31
-__Scrutinizer-CI__ * for providing us a free Security Analysis
32
-
-__VersionEye__ * For being an awesome tool that helped us to watch version dependencies. You will be missed, thanks you very much Robert.
32
+
-__VersionEye__ * For being an awesome tool that helped us to watch version dependencies. You will be missed, thank you very much Robert.
33
33
-__Sabine van Lommen__ * from __Zend.com__ for providing us a free developer licence of Zend Server
34
34
-__Lucas (_hammermaps_)__ for the "Zend Data Cache" driver implementation
35
35
-__Anton (_git-webmaster_)__ for kindly providing us a Couchbase server for deep tests purposes.
36
36
37
-
\* Thanks to the companies that provided us free access to their products to help us to build a better quality software every days.
37
+
\* Thanks to the companies that provided us free access to their products to help us to build a better quality software every day.
38
38
39
39
But above all, many thanks to these companies to support indisputably Open Source Projects.
40
-
Thanks to all the contributors that added their stone to the building. Each contribution made this project a bit better, every commits, every pull request you made contributed to make this project greater and better.
40
+
Thanks to all the contributors that added their stone to the building. Each contribution made this project a bit better, every commit, every pull request you made contributed to make this project greater and better.
Copy file name to clipboardExpand all lines: docs/OPTIONS.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,22 @@
1
-
PhpFastCache has some options that you may want to know before using them, here's the list:
1
+
Phpfastcache has some options that you may want to know before using them, here's the list:
2
2
3
3
### File-based drivers options *
4
4
***path** See the "**Host/Authenticating options**" section
5
5
***default_chmod**_| int>octal (default: 0777)_`[>=V4, <V7]` This option will define the chmod used to write driver cache files.
6
6
***defaultChmod**_| int>octal (default: 0777)_`[>=V7]` New configuration name of `default_chmod` as of V7
7
7
***securityKey**_| string (default: 'auto')_`[>=V4]` A security key that define the subdirectory name. 'auto' value will be the HTTP_HOST value.
8
8
***htaccess**_| bool (default: true)_`[>=V4]` Option designed to (dis)allow the auto-generation of .htaccess.
9
-
***autoTmpFallback**_| bool (default: false)_`[>=V6]`Option designed to automatically attempt to fallback to temporary directory if the cache fails to write on the specified directory
10
-
***secureFileManipulation**_| bool (default: false)_`[>=V6]` This option enforces a strict I/O manipulation policy by adding more integrity checks. This option may slow down the write operations, therefore you must use it with caution. In case of failure an**phpFastCacheIOException** exception will be thrown. Currently only supported by _Files_ driver.
11
-
***cacheFileExtension**_| string (default: 'txt')_`[>=V6.0.2]` This allows you to setup a custom (but safe) cache file extension.
9
+
***autoTmpFallback**_| bool (default: false)_`[>=V6]`Option designed to automatically attempt to fall back to temporary directory if the cache fails to write on the specified directory
10
+
***secureFileManipulation**_| bool (default: false)_`[>=V6]` This option enforces a strict I/O manipulation policy by adding more integrity checks. This option may slow down the write operations, therefore you must use it with caution. In case of failure a**PhpfastcacheIOException** exception will be thrown. Currently, only supported by _Files_ driver.
11
+
***cacheFileExtension**_| string (default: 'txt')_`[>=V6.0.2]` This allows you to set up a custom (but safe) cache file extension.
12
12
13
13
\* Drivers like _Files_, _Sqlite_, _Leveldb_, etc.
14
14
15
15
### Global options
16
16
***fallback**_| string|bool_ (default: false)`[>=V4.2]` A driver name used in case the main driver stopped working. E.g. a missing php extension.
17
17
***fallbackConfig**_| ConfigurationOption|null_ (default: null)`[>=V7]` A dedicated `ConfigurationOption` object for the `fallback` driver, if needed.
18
-
***compress_data**_| bool (default: false)_`[>=V4.3]` Compress stored data, if the backend supports it. Currently only supported by _Memcache(d)_ driver.
19
-
***limited_memory_each_object**_| int (default: 4096)_`[>=V4.2]` Maximum size (bytes) of object stored in memory. Currently only supported by _Cookie_ driver.
18
+
***compress_data**_| bool (default: false)_`[>=V4.3]` Compress stored data, if the backend supports it. Currently, only supported by _Memcache(d)_ driver.
19
+
***limited_memory_each_object**_| int (default: 4096)_`[>=V4.2]` Maximum size (bytes) of object stored in memory. Currently, only supported by _Cookie_ driver.
20
20
***defaultTtl**_| int (default: 900)_`[>=V5]` This option define a default ttl (time-to-live, in seconds) for item that has no specified expiration date/ttl.
21
21
***itemDetailedDate**_| bool (default: false)_`[>=V6]` This option will define if the Items will make use of detailed dates such as Creation/modification date. Trying to access to these date without being explicitly enabled will throw a `LogicException`
22
22
***defaultKeyHashFunction**_| string (default: 'md5')_`[>=V6]` This option will allow you to define a custom hash function for the `$item->getEncodedKey()` method. Callable objects are not allowed, but static method such as `\Absolute\Namespace\ToStatic::method` are allowed.
@@ -38,7 +38,7 @@ PhpFastCache has some options that you may want to know before using them, here'
38
38
***redisClient**_| \Redis (default: null)_`[>=V7]` An optional Redis Client created outside Phpfastcache's scope. This option overrides every _Host/Authenticating_ options
39
39
***predisClient**_| \Predis\Client (default: null)_`[>=V7]` An optional Predis Client created outside Phpfastcache's scope. This option overrides every _Host/Authenticating_ options
40
40
41
-
These options differs depending the driver that you are using, see **/Examples** folder for more information about these options.
41
+
These options differ depend on the driver that you are using, see **/Examples** folder for more information about these options.
42
42
43
43
\* Drivers like _CouchBase_, _MongoDb_, _(P)redis_, _Ssdb_, etc.
0 commit comments