
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
nestjs-cache-redis
Advanced tools
☯ Nestjs module to cache data with redis uses the official node-redis library of Redis
☯ Nestjs module to cache data with redis uses the official node-redis library of Redis. ☯
$ npm install nestjs-cache-redis
# OR
$ yarn add nestjs-cache-redis
# OR
$ pnpm add nestjs-cache-redis
☯ The package has two main parts:
@Module({
imports: [CacheModule.register({})],
controllers: [],
providers: [],
})
export class AppModule {}
// OR
@Module({
imports: [CacheModule.registerAsync({})],
controllers: [],
providers: [],
})
export class AppModule {}
The CacheModuleOptions
have default value:
{
isGlobal: false,
url: "redis://localhost:6379",
FIFO: {
ttl: 60, // seconds
max: 100, // max items was stored in cache
resetExpires: false,
hashKeyName: "FIFO",
listKeyName: "FifoPriority"
},
LRU: {
ttl: 60,
max: 100,
resetExpires: false,
hashKeyName: "LRU",
sortedSetKeyName: "LruPriority"
},
LFU: {
ttl: 60,
max: 100,
resetExpires: false,
hashKeyName: "LFU",
sortedSetKeyName: "LfuPriority"
}
}
@Controller()
export class AppController {
constructor(
private readonly appService: AppService,
@InjectCache()
private readonly cacheService: CacheService,
) {}
@Get()
async getHello() {
await this.cacheService.rPush('listKeyName', 'key');
return this.appService.getHello();
}
}
The instance created by CacheService
is the same instance returned by createClient()
of node-redis.
You can use it for controller
or method
// For controller
@Controller()
@UseInterceptors(CacheLruInterceptor)
export class AppController {
...
}
// For method
@Controller()
export class AppController {
@Get()
@UseInterceptors(CacheFifoInterceptor)
getHello() {
...
}
}
CacheFifoInterceptor
, CacheLruInterceptor
and CacheLfuInterceptor
) is only support GET
method ☯ Explanation: In the FIFO cache eviction strategy, items are removed from the cache based on the order they were added. The item that was added first will be removed first when the cache is full.
☯ Example: Suppose the cache can only hold 100 items and it's full. When a new item is added, it goes to the end of the list, and the item at the beginning of the list (the oldest item) will be evicted from the cache.
☯ Explanation: In the LRU cache eviction strategy, items are removed from the cache based on the least recently used principle. The item that was accessed least recently will be evicted first when the cache is full.
☯ Example: Consider a scenario where the cache is full and can only store 100 items. When a new item is accessed, it is moved to the front of the list, and the item at the end of the list (the least recently accessed item) will be evicted from the cache.
☯ Explanation: In the LFU cache eviction strategy, items are removed from the cache based on the least frequently used principle. The item that has been accessed the fewest number of times will be evicted first when the cache is full.
☯ Example: If an item has been accessed multiple times in the past, it will have a high access count and is less likely to be evicted. Conversely, an item that has been accessed infrequently will have a low access count and may be quickly evicted when the cache is full.
nestjs-cache-redis is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please contact me.
nestjs-cache-redis is MIT licensed.
FAQs
☯ Nestjs module to cache data with redis uses the official node-redis library of Redis
We found that nestjs-cache-redis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.