Giter Site home page Giter Site logo

Comments (3)

giftig avatar giftig commented on July 19, 2024

I'd definitely hope it's threadsafe... I've been using it concurrently across several goroutines without problems, but I can't say definitively that it's okay as I haven't looked at the library's code in great detail. What say you, @op ?

from go-logging.

jaytaylor avatar jaytaylor commented on July 19, 2024

I know that concurrent writes to stdout are not safe. Afaik go-logging doesn't do anything to protect from this, but looking at the hot code path would give the definitive answer. I recall observing occasional malformed output from go-logging from what appeared to be concurrency issues in the past, but it's rare enough that I'm not worried for my needs.

On Jan 26, 2016, at 2:35 PM, giftig [email protected] wrote:

I'd definitely hope it's threadsafe... I've been using it concurrently across several goroutines without problems, but I can't say definitively that it's okay as I haven't looked at the library's code in great detail. What say you, @op ?


Reply to this email directly or view it on GitHub.

from go-logging.

op avatar op commented on July 19, 2024

It should be safe to use from multiple goroutines. If not, it's a bug. Locks have been avoided due to performance reasons but the shared state should be thread-safe.

The log backend, which I guess most people are using, does only one call to the log package and the log package itself says that

A Logger can be used simultaneously from multiple goroutines; it guarantees to serialize access to the Writer.

See here: https://golang.org/src/log/log.go#L147 . For the other backends, eg syslog, I don't see why you shouldn't be able to use them from multiple goroutines either.

Order is not (currently) guaranteed if multiple backends are used but they should work fine.

@jaytaylor it would be interesting to know how how that is possible. What backends are you using? You should be able to run with race tracer to detect errors.

from go-logging.

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.