Arjun Mehta

Results 31 comments of Arjun Mehta

Almost definitely related to #127.

This may be related to the Chrome issue: https://code.google.com/p/chromium/issues/detail?id=76358 but likely part of a larger connectivity/network issue that is causing the close event to be emitted unreliably. In any case,...

@tdd your `"tern_command"` property should be pointing to a binary of `tern` not `node`!

Also @mayuroks : To make `.` (dot) code completion work just add `"."` to the list of characters in your `"auto_complete_triggers"` in your `User/Preferences.sublime-settings` file: ``` "auto_complete_triggers": [{"characters": "."}], ```

@Mohammad-Khalid95 Can you tell me which version of Redis you're using? Never experienced this issue before, and the package has been tested with ioredis `^4.17.3`.

@Mohammad-Khalid95 You can have a look a how the tests are set up https://github.com/arjunmehta/node-georedis/blob/master/test/testIORedisNative.js So you would do: ```es6 const IORedis = require('ioredis'); const client = new IORedis(); const georedis...

@nicolas-raoul Unfortunately there is no way to do paging as you describe in a very performant way, even when using the native interface. :( You will have to do some...

Should we use promises?

@pravindot17 Sorry for not seeing this until now. Which redis library are you using? Are you using `node-redis`?

@prakashsam Sorry for the slow reply. I'm not sure if you were able to resolve the issue? It may have been related to https://github.com/arjunmehta/node-georedis/issues/30 Sorry for taking so long to...