Git Product home page Git Product logo

Comments (6)

garyburd avatar garyburd commented on June 9, 2024

The connection Do method cannot be called concurrently.

You should use a pool. The documentation shows how to use a pool from an http request handler.

Also, check and handle errors.

from redigo.

Wuyue avatar Wuyue commented on June 9, 2024

I change to use a pool ,but I get this errors sometimes

read tcp 127.0.0.1:6379: connection reset by peer

or

dial tcp 127.0.0.1:6379: can't assign requested address

from redigo.

garyburd avatar garyburd commented on June 9, 2024

Please provide short program that demonstrates the error.

from redigo.

Wuyue avatar Wuyue commented on June 9, 2024

program like this
https://github.com/Wuyue/test_redigo/blob/master/test.go

run

wrk -t10 -c100 -d10s http://0.0.0.0:9090

and the log

...
hello 51732
hello 51732
2014/06/23 10:48:07 Dail redis server 127.0.0.1:4539 dial tcp 127.0.0.1:4539: can't assign requested address
hello %!s(<nil>)
2014/06/23 10:48:07 Dail redis server 127.0.0.1:4539 dial tcp 127.0.0.1:4539: can't assign requested address
...

from redigo.

garyburd avatar garyburd commented on June 9, 2024

I wouldn't ping on every borrow from the code, but otherwise the code looks functionally correct.

The app is failing to connect to the Redis server. Does the Redis server log anything interesting?

How long does the app run before it generates errors?

from redigo.

peterbe avatar peterbe commented on June 9, 2024

For what it's worth, I have a similar little app that uses radix and when I run wrk with a heavy concurrent load on it, it too spits out that error.

With radix I use the pool.NewCustomPool (see docs). I had it set to make a pool of 10 connection thingies.

But, I noticed that it only happened when I use runtime.GOMAXPROCS(runtime.NumCPU())

So, now I set the pool size to be runtime.NumCPU() * 10 and then the error stops appearing.

from redigo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.