ioredis-mock icon indicating copy to clipboard operation
ioredis-mock copied to clipboard

Emulates ioredis by performing all operations in-memory.

Results 95 ioredis-mock issues
Sort by recently updated
recently updated
newest added

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [@babel/cli](https://babel.dev/docs/en/next/babel-cli) ([source](https://togithub.com/babel/babel/tree/HEAD/packages/babel-cli)) |...

📦 deps
🤖 bot

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://togithub.com/actions/cache) | action | major | `v3` -> `v4` | ---...

📦 deps
🤖 bot
⚠️ major

I basically don't want to host Redis (yet), but I want to design cache in such a way that will allow it in the future. Would this work as good...

as per https://redis.io/commands/set/ Starting with Redis version 7.0.0: Allowed the NX and GET options to be used together.

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github/codeql-action](https://togithub.com/github/codeql-action) | action | major | `v2` -> `v3` | ---...

📦 deps
🤖 bot
⚠️ major

I'm using ioredis-mock in my ts code with jest. import RedisMock from 'ioredis-mock'; ``` RedisMock.prototype.status = 'ready' jest.mock('ioredis', () => jest.requireActual('ioredis-mock')); ``` I need to know how many times the...

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://togithub.com/actions/setup-node) | action | major | `v3` -> `v4` | --- ### Release...

📦 deps
🤖 bot
⚠️ major

I added 2 functions I needed to use this lib 🙂

I have a lua script that was calling `zmpop` (which is, at the time of writing, unsupported). Calling this script results in this error: `Error trying to loading or executing...

Hi! I'm using this library for a project and currently it doesn't support watch commands and throws. I have set a workaround to get them passing but it actually doesn't...