GithubHelp home page GithubHelp logo

Best practice about mgo HOT 6 CLOSED

globalsign avatar globalsign commented on September 17, 2024
Best practice

from mgo.

Comments (6)

pjebs avatar pjebs commented on September 17, 2024

Can you please provide guidance (since you are the only authority on the matter) on how and when to use clone and copy.

from mgo.

pjebs avatar pjebs commented on September 17, 2024

See also:
https://groups.google.com/forum/#!topic/mgo-users/pk9IsU2bb8o
http://stackoverflow.com/questions/33275357/should-i-copy-session-for-each-operation-in-mgo

from mgo.

pjebs avatar pjebs commented on September 17, 2024

This is a copy of: https://github.com/go-mgo/mgo/issues/287 which the original author did not answer. Since the original author has now retired, I guess you are the highest power. It would be great if a higher power answered it because I noticed there are 100's of people asking the same question on forums and many are linking to my original issue.

Thank you for your time.

from mgo.

pjebs avatar pjebs commented on September 17, 2024

Does this package do connection pooling similar to database/sql?

from mgo.

domodwyer avatar domodwyer commented on September 17, 2024

Hi @pjebs

You're not the first to ask this! I'd suggest using session.Copy() to automatically open a new socket to the Mongo server if needed, or reuse an existing socket if available. This means your application will "warm up" to the number of connections needed for the load in the first few minutes of operation.

You could use Clone() which uses the same underlying socket, but past a certain level of concurrency your application will be bound by contention caused by sharing the single socket. Depending on your workload this might not be an issue, but it's likely going to be a nasty surprise!

Calling Dial each time involves opening a connection, performing any authentication (not cheap) and then closing it when you're done, having to do it all again for the next request - this is a lot of round trips and very expensive for both the client and server - you should avoid this method.

I've added an example to the documentation - this should make it into the master branch / godoc.org soon.

I hope this helps, does it answer all your questions?

Dom

from mgo.

pjebs avatar pjebs commented on September 17, 2024

thank you.

from mgo.

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.