So, I have a linux server that I use to run the program, and I like to use windows to encode on it. so far i have used json to store and retrieve key information, values ββfrom text files. a friend told me to check redis, so I installed it for python 3.3 using its installer. when trying to use it, he gave the following error:
raise ConnectionError(self._error_message(e))
redis.exceptions.ConnectionError: Error 10061 connecting to localhost:6379. No connection could be made because the target machine actively refused it.
Now I was told after that that I need to get a redis server, but so far the only options I have found are for Linux. so the question is, how can I get python to work with redis on windows? I'm completely new to the database type repository, so any help would be greatly appreciated. also on a different note, if there is a question that has been asked regarding using python with redis on windows, then link this here. I could not find any other questions of this particular nature.
source
share