Saba Pochkhua

Results 10 comments of Saba Pochkhua

Useful link: https://www.tutorialspoint.com/python_network_programming/python_dns_look_up.htm

Suggestion: urllib provides parser for urls, you can use it if you want. ` from urllib.parse import urlparse` Try to parse url, if error occurs return False

If this project is still up and open I would like to work on it :)

@bnMikheili Feel free to work on it!

@kamilmysliwiec any plans on merging this PR in the near future?

Tried migrating from `ioredis` to `node-redis`, but this issue makes the project nearly unusable. It slows down the IDE, causes freezes, and hurts overall productivity—even on a MacBook M4 Pro,...

I’ve run some benchmarks to measure the impact of the current node-redis type definitions on TypeScript build performance. ## 1 - With redis types When using these types: ```ts import...

I have small OSS project [nestjs-redis](https://github.com/CSenshi/nestjs-redis) and changed it there Here are the results of compilation of libraries Command: ```bash pnpm nx run-many -t build ``` Before: ```bash NX Completed...

Please set `isGlobal: true` in the RedisModule as shown [in this example](https://github.com/CSenshi/nestjs-redis/blob/bd35e11c39585ed8c9127454a5ad270c5ae50c2c/examples/full/src/app/app.module.ts#L20) or import RedisModule inside redlock like this: ```ts RedlockModule.forRootAsync({ imports: [ RedisModule.forRootAsync({ inject: [ConfigService], useFactory(configService: ConfigService) { const...

For now duplicate method does not exist on sentinel type for `node-redis` (created issue on node-redis https://github.com/redis/node-redis/issues/3107#issuecomment-3430989208). For now please use single client or cluster until the issue is resolved.