I am very new to redis and this has always made me curious.
I am using a single redis client connection in nodejs (npm's redis package) which is included in each of my files.
Say for eg : File a.js is used for reading from mysql and inserting the data into redis hash ,file b.js reads from redis hash and outputs the result.
Now in a production environment i have a large numbers of request comming to b.js files which serves the content and in between i have a few request being made to a.js files to update the contents on the fly.
I want to know if a request to a.js slows down the already running redis connection in b.js.