New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@forgerock/openam-agent-cache-simple

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forgerock/openam-agent-cache-simple

Simple in-memory cache for the OpenAM Policy Agent for NodeJS

2.0.0
latest
Version published
Weekly downloads
4
100%
Maintainers
1
Weekly downloads
 
Created

openam-agent-cache-simple

Simple in-memory cache for the OpenAM Policy Agent for NodeJS

Installation: npm install @forgerock/openam-agent-cache-simple

API Docs

SimpleCache ⇐ Cache

Kind: global class
Extends: Cache

new SimpleCache([options])

Cache implementation that stores entries in an object in memory (not efficient for large caches)

ParamTypeDefaultDescription
[options]objectOptions
[options.expireAfterSeconds]number300Expiration time in seconds (if undefined, entries won't expire)
[options.logger]winston~LoggerLogger

Example

var agent = new PolicyAgent({
  cache: new SimpleCache({expireAfterSeconds: 600}) // cached entries expire after 10 minutes
  ...
})

simpleCache.get(key) ⇒ Promise

Get a single cached item If the entry is not found, reject

Kind: instance method of SimpleCache

ParamType
keystring

simpleCache.put(key, value)

Store a single cached item (overwrites existing)

Kind: instance method of SimpleCache

ParamType
keystring
value*

simpleCache.remove(key) ⇒ Promise

Remove a single cached item

Kind: instance method of SimpleCache

ParamType
keystring

simpleCache.quit() ⇒ Promise

If this were a database, it would close the connection, but since it's not, it doesn't

Kind: instance method of SimpleCache

DISCLAIMER

The sample code described herein is provided on an "as is" basis, without warranty of any kind, to the fullest extent permitted by law. ForgeRock does not warrant or guarantee the individual success developers may have in implementing the sample code on their development platforms or in production configurations.

ForgeRock does not warrant, guarantee or make any representations regarding the use, results of use, accuracy, timeliness or completeness of any data or information relating to the sample code. ForgeRock disclaims all warranties, expressed or implied, and in particular, disclaims all warranties of merchantability, and warranties related to the code, or any service or software related thereto.

ForgeRock shall not be liable for any direct, indirect or consequential damages or costs of any type arising out of any action taken by you or others related to the sample code.

FAQs

Package last updated on 19 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts