Giter VIP home page Giter VIP logo

go-mysql-lock's People

Contributors

ankur-a avatar areson avatar enrico204 avatar jiahui911 avatar joshvarner avatar sanketplus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

go-mysql-lock's Issues

Double Release() risk

If Release() is called twice, the second time will block forever. It would be preferable to return an error or ignore the second call.

A typical usage of the library would be like this:

lock, _ := locker.Obtain("foo")
// do something
lock.Release()

However, lock.refresher() may call lock.Release() if PingContext() fails. Therefore, it is impossible to know if it has already been called and write safe code that only calls once.

Multiple Retries Before Giving Up

Currently, a goroutine periodically pings on the connection that holds the lock. If a ping fails, it bails out and closes the connection.

  1. Confirm what happens to connection when a ping fails
  2. If connection is still kept in pool, consider multiple ping retries before giving up (and possibly make it configurable)

Go Routine Leak

There is currently a go-routine leak when spawning a refresher goroutine go lock.refresher(l.refreshInterval, cancelFunc) due to the use of an unbuffered channel unlocker: make(chan struct{}) , as in l.Release() called after connection ping fails due to cancellation of connection context, as there is no consumer listening to the channel l.unlocker <- struct{}{} while calling release goes to an infinite deadlock wait.

Using unlocker: make(chan struct{}, 1) should fix this deadlock.

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.