wusikijeronii

Results 15 comments of wusikijeronii

> ```d > auto redisDB = connectRedisDB(URL("redis://password:localhost/3?maxmemory=10000000")); > ``` > > Shouldn't that be: > > ```d > auto redisDB = connectRedisDB(URL("redis://:password@localhost/3?maxmemory=10000000")); > ``` Thank you, but I have tried...

> ```d > auto redisDB = connectRedisDB(URL("redis://:password@localhost/3?maxmemory=10000000")); > ``` Ok. Copied your code. I get the error: ```d undefinedobject.Exception@../../../.dub/packages/vibe-d-0.9.4/vibe-d/inet/vibe/inet/url.d(174): Empty user name in URL. ``` If I use (with space):...

> Actually, you can't. I went and checked the RFC, and it says explicitly: > > > there is no way to specify a password without specifying a user name...

Today I've installed a fresh Redis instance in the new node in my home cluster and when I tried to login after failure the redis-cli gave me a tip. The...

> I don't think I have ever really used the HTTP logger personally, but the numbers look awful. It looks like there is some heavy lock contention going on, rendering...

> When looking at the implementation, one of the issues that stands out most is that `FileStream.write` is being used directly with small chunks and `FileStream.flush` is issued for every...

Today I tried to use two frameworks for testing. Node-JS and Django. Node-JS works fine without any problem but Django has the same problem. I googled some solutions and I...

Solution in https://github.com/moby/moby/issues/34531

It doesn't work after reboot. After reboot iptables rules are loaded but the problem still exists. I need manually restart the iptables service to solve the problem. I also tried...

Hello, guys.  I faced the same issue but using a custom binary file. driver: exec. The deployment was successful after moving the binary file to the /usr/local folder. Error: ```...