Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@javien/mikro-orm-redis-cache-adapter

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@javien/mikro-orm-redis-cache-adapter

This is mikro orm redis cache adapter that uses `v8.serialize` and `vs.deserialize` rather than `JSON.stringify` and `JSON.parse`.

  • 0.0.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

Mikro ORM Redis Cache Adapter

This is mikro orm redis cache adapter that uses v8.serialize and vs.deserialize rather than JSON.stringify and JSON.parse.

Quick start

After install the package, add resultCache config.

import
  RedisCacheAdapter,
  { type RedisCacheAdapterOptions}
from '@javien/mikro-orm-redis-cache-adapter'

defineConfig({
  // your configuration
  resultCache: {
    adapter: RedisCacheAdapter
    options: {
      // pass your redis client
      client: redis
      // (optional) Debug mode. Defaults to `false`.
      debug: true,
      // (optional) The prefix for the cache keys. Defaults to `mikro`.
      prefix: 'mikro',
      // (optional) The delimiter between the prefix and the cache key. Defaults to `:`.
      prefixDelimiter: ':',
      // (optional) Logger. Defaults to `console.log`.
      logger: console.log,
      gracefulShutdown: false
      // (optional) gracefulShutdown: If you want to close the Redis connection by yourself, set it to `false`. Defaults to `true`.
    } as RedisCacheAdapterOptions
  }
})

Why not JSON.stringify?

JSON.stringify is usually used to serialize object, but there're several kind of data that it can't serialize and deserialize - BigInt, recursive, Buffer, Map, Set and etc.

JSON.stringify(BigInt(1))
// Uncaught TypeError: Do not know how to serialize a BigInt

const obj = {}
obj.obj = obj
JSON.stringify(obj)
// Uncaught TypeError: Converting circular structure to JSON
//     --> starting at object with constructor 'Object'
//     --- property 'obj' closes the circle

const buf = Buffer.from([0])
const str = JSON.stringify(buf)
// '{"type":"Buffer","data":[0]}'

const parsed = JSON.parse(str)
// { type: 'Buffer', data: [ 0 ] }
// parsed value is different with original data.

To solve this, we can pass replacer parameter. However I thought this is not a best way to serialize data.

Keywords

FAQs

Package last updated on 25 May 2024

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc