* Returns item cache. * @param {string} identifier the cache identifier * @param {Etag | null} etag the etag * @returns {ItemCacheFacade} item cache
(identifier, etag)
| 247 | * @returns {ItemCacheFacade} item cache |
| 248 | */ |
| 249 | getItemCache(identifier, etag) { |
| 250 | return new ItemCacheFacade( |
| 251 | this._cache, |
| 252 | `${this._name}|${identifier}`, |
| 253 | etag |
| 254 | ); |
| 255 | } |
| 256 | |
| 257 | /** |
| 258 | * Gets lazy hashed etag. |
no outgoing calls