Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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
The npm package nestjs-cache-redis receives a total of 6 weekly downloads. As such, nestjs-cache-redis popularity was classified as not popular.
We found that nestjs-cache-redis demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.