The N/cache module is part of the NetSuite Applications Suite and is used for temporary, short-term storage of data. This module helps improve performance by reducing the need for scripts to repeatedly retrieve the same data
1.Here are some key features of the N/cache module:
- Cache Creation: You can create a cache that is available to the current script, all server scripts in the current bundle, or all server scripts in your NetSuite account.
- Data Storage: Data is stored in the cache based on its time to live (TTL) specified in the cache method. Put method
- Cache Retrieval: Use the cache. get method to retrieve values from the cache using a specific key.
- Cache Removal: The cache remove method allows you to remove values from the cache.