Giter VIP home page Giter VIP logo

Comments (10)

weyoss avatar weyoss commented on August 18, 2024 1

@PhilHannent I got your point!

So the issue is about using the redis configuration of your application which is using redis@v4 for redis-smq.

In such case, definitely you are going to have the issue that you mentioned before.

I'll create a small example.

There is no more need to create an example. The issue has been clarified. Thank you.

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024 1

Before redis is upgraded to v4, the only solution is to use a separate redis configuration for redis-smq.

Please follow #86 to stay tuned about upgrading to redis@v4

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024

@chris-elmstone Thank you for opening this issue.

we use Handi-Redis to bypass this as using Redis 4 conflicts with this package's Redis 3.*.

Please provide an example to reproduce your conflicts.

I believe you should not have any issue when using a different redis version than the one that this library is using (thanks to NPM dependency resolution algorithm).

Here I am using [email protected]:

{
  "dependencies": {
    "redis": "^4.0.4",
    "redis-smq": "^6.2.6"
  }
}

No conflict errors are expected when running this code:

import { Consumer } from 'redis-smq';
import { createClient } from 'redis';

const c = new Consumer();
c.run(() => {
    const r = createClient();
    r.connect().then(() => r.info()).then((i) => {
        console.log(i);
    });
});

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024

Closing as resolved

from redis-smq.

PhilHannent avatar PhilHannent commented on August 18, 2024

Good afternoon weyoss,

I am having a go at trying to use redis v4 with redis-smq and there is a type conflict:

node_modules/redis-smq/dist/types/index.d.ts:3:10 - error TS2305: Module '"redis"' has no exported member 'ClientOpts'.

3 import { ClientOpts, Multi, RedisClient as NodeRedis } from 'redis';
           ~~~~~~~~~~

node_modules/redis-smq/dist/types/index.d.ts:3:22 - error TS2305: Module '"redis"' has no exported member 'Multi'.

3 import { ClientOpts, Multi, RedisClient as NodeRedis } from 'redis';

They appear to have changed the ClientOps type to be RedisClientOptions

redis/node-redis#1673

But redis-smq uses the older naming convention:
import { Callback, ClientOpts, Multi, RedisClient as NodeRedis } from 'redis';

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024

@PhilHannent I have re-opened this issue as it seems that there is a conflict problem that does not always occur.

Please provide a full working example to reproduce your issue.

You can try to run code from my previous comment #78 (comment)

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024

Using

{
  "dependencies": {
    "redis": "^4.0.4",
    "redis-smq": "^6.2.6"
  }
}

I am not having any issue, including your listing:

node_modules/redis-smq/dist/types/index.d.ts:3:10 - error TS2305: Module '"redis"' has no exported member 'ClientOpts'.

3 import { ClientOpts, Multi, RedisClient as NodeRedis } from 'redis';
           ~~~~~~~~~~

node_modules/redis-smq/dist/types/index.d.ts:3:22 - error TS2305: Module '"redis"' has no exported member 'Multi'.

3 import { ClientOpts, Multi, RedisClient as NodeRedis } from 'redis';

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024

The explanation is obvious. When a module is being used in different libraries, NPM handles this situation depending on the following cases:

  1. If the module version is the same between all the libraries, then the module is installed in the main node_modules directory and is used by all the libraries.
  2. If the module version is NOT the same (in our case redis v4 and v3) between some libraries then each library uses its own module version and the module is installed in a local node_modules directory of the library.

Screenshot_2022-05-23_09-40-10

from redis-smq.

PhilHannent avatar PhilHannent commented on August 18, 2024

Good morning weyoss!

To clarify, having the two side by side isn't the issue. It is where we are attempting to have one configuration for both our redis usage and for redis-smq. Because there is a difference in how the redis versions structure their configuration, it seems like we cannot re-use the same structure.

I'll create a small example.

from redis-smq.

weyoss avatar weyoss commented on August 18, 2024

Closing as resolved.

from redis-smq.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.