Comparing version 4.3.0 to 4.3.1
@@ -0,1 +1,9 @@ | ||
### 4.3.1 | ||
* docs: Clarify that timeout applies to unset - **[@Zanadar](https://github.com/Zanadar)** [#36](https://github.com/groupon/node-cached/pull/36) | ||
- [`89209ce`](https://github.com/groupon/node-cached/commit/89209cefca9ad39ea1b2a789dd49e23d65eee960) **docs:** Clarify that timeout applies to unset | ||
* docs: Fix typo in contributing.md - **[@Zanadar](https://github.com/Zanadar)** [#35](https://github.com/groupon/node-cached/pull/35) | ||
- [`a3e5efa`](https://github.com/groupon/node-cached/commit/a3e5efaeec84e115de7fea035d5f69efc08cae3e) **docs:** fix typo in contributing.md | ||
### 4.3.0 | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "cached", | ||
"version": "4.3.0", | ||
"version": "4.3.1", | ||
"description": "Simple access to a cache", | ||
@@ -5,0 +5,0 @@ "license": "BSD-3-Clause", |
@@ -172,3 +172,3 @@ # cached | ||
* `timeout` is the maximum time in milliseconds to wait for cache operations to complete. | ||
Configuring a timeout ensures that all `get` and `set` operations fail fast. | ||
Configuring a timeout ensures that all `get`, `set`, and `unset` operations fail fast. | ||
Otherwise there will be situations where one of the cache hosts goes down and reads hang for minutes while the memcached client retries to establish a connection. | ||
@@ -175,0 +175,0 @@ It's **highly** recommended to set a timeout. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35573