Code Monkey home page Code Monkey logo

beanstalk's People

Contributors

27182818284590 avatar cooldarkdryplace avatar jalerson avatar jamesmccann avatar olimpias avatar prep avatar wenkat 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

Watchers

 avatar  avatar

beanstalk's Issues

Support for Unix Domain Sockets

Hi!

Beanstalkd 1.12 supports Unix Domain Sockets (commit).

Unfortunately, the current client implementation only supports TCP sockets. Even though adding UDS support is trivial and beneficial for people who do not want to have TCP overhead.

Do you want to support UDS?
If not, please close the issue.

If yes, would you prefer just another URL prefix, like unix://,

beanstalk.Dial("unix:///var/run/beanstalkd/beanstalkd.sock", cfg)

Or is your preference to give a way to construct beanstalk.Conn by passing net.Conn as a parameter?

conn, err := net.Dial("unix", "/var/run/beanstalkd/beanstalkd.sock")
if err != nil {
    log.Fatalf("Failed to connect: %s", err)
}
bc := beanstalk.NewConn(conn, cfg)

I can prepare a PR if this looks interesting.

Cheers.

please export delete function

func (conn *Conn) delete(ctx context.Context, job *Job) error {
	ctx, span := trace.StartSpan(ctx, "github.com/prep/beanstalk/Conn.delete")
	defer span.End()

	_, _, err := conn.lcommand(ctx, "delete %d", job.ID)
	return err
}

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.