chameleonbr / node-red-contrib-redis

Node RED client for Redis with pub/sub, list, lua scripting and other commands support.
MIT License
46 stars 42 forks source link

SELECT made on every request #6

Closed astrilchuk closed 8 years ago

astrilchuk commented 8 years ago

I noticed that a SELECT request is made before each command request. Given that the database is configured via the UI could the SELECT be just be called on connect to redis?

chameleonbr commented 8 years ago

Version 1.1.4: Now select db on connect.

astrilchuk commented 8 years ago

I've confirmed the initial select is working and no further selects are made.

Thanks!