Chris

Results 27 comments of Chris

I sometimes get this message but there is no difference between what is on disk and what is in the editor. Maybe I added and removed a character, but there...

Strangely I think I am experiencing this same issue but from a different way. Whenever a subprocess is opened to run powershell.exe, the console font changes to raster from Consolas....

I made a Factory class that inherits from RedisFactory in order to issue the CLIENT SETNAME command in the addConnection function. I'll post a link to a snippet shortly.

``` class ClientNamedRedisFactory(redis.RedisFactory): def __init__(self, name, *args, **kwargs): redis.RedisFactory.__init__(self, *args, **kwargs) self.name = name def addConnection(self, conn): conn.execute_command("CLIENT", "SETNAME", self.name) return redis.RedisFactory.addConnection(self, conn) def makeConnection(url, name, reconnect = True, charset...

I also witness this behavior in my applications when I have a burst of redis activity, it causes pauses in the rest of my program. I did not expect such...

Just ran into the same issue. I'm not sure how we had both on. Maybe a warning would help. /shrug