Cody Olsen
Cody Olsen
We're currently doing `*Buffer` versions of commands as separate commands. We should be doing it like ioredis, on another layer so it's automatic/dynamic. We can then simplify the [compat table](https://github.com/stipsan/ioredis-mock/blob/master/compat.md)...
Implement `Redis.ReplyError` and `new Redis({ showFriendlyErrorStack: true })`: https://github.com/luin/ioredis#error-handling
- Deprecate `createConnectedClient`, it's no longer needed since https://github.com/stipsan/ioredis-mock/pull/1110 - Add tests that ensure subscriptions are shared per host and port options, it should be possible to pub and sub...
Simulate the offline queue feature: https://github.com/luin/ioredis#offline-queue Technically, we're always "online". To support this feature we would need a way to pretend we're offline and queue commands until we're online. As...
Implement/mock the same events as `ioredis`: https://github.com/luin/ioredis#connection-events
http://redis.io/commands/expire
## Feature - [x] Documentation added ## Documentation / Examples - [x] The examples guidelines are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing.md#adding-examples) This PR updates the cms-sanity example to: - Deploy...
This follows up on @developit's [signal](https://github.com/developit/microbundle/pull/706#issuecomment-676516014) that ESM Import Maps is an interesting feature for microbundle. # TL;DR This PR is about supporting the [ahead-of-time rewriting](https://github.com/WICG/import-maps#ahead-of-time-rewriting) strategy that the [draft...
I'm dying to rewrite more internals, but all the manual testing is too time consuming so it's time to figure out what the best way to test highly interactive, drag...