que-go

An interoperable Golang port of the Ruby Que queuing library for PostgreSQL

  • 所有者: bgentry/que-go
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

que-go

GoDoc

Que-go is a fully interoperable Golang port of Chris Hanks' Ruby Que
queuing library
for PostgreSQL. Que uses PostgreSQL's advisory locks
for speed and reliability.

Because que-go is an interoperable port of Que, you can enqueue jobs in Ruby
(i.e. from a Rails app) and write your workers in Go. Or if you have a limited
set of jobs that you want to write in Go, you can leave most of your workers in
Ruby and just add a few Go workers on a different queue name. Or you can just
write everything in Go :)

pgx PostgreSQL driver

This package uses the pgx Go PostgreSQL driver rather than the more
popular pq. Because Que uses session-level advisory locks, we have to hold
the same connection throughout the process of getting a job, working it,
deleting it, and removing the lock.

Pq and the built-in database/sql interfaces do not offer this functionality, so
we'd have to implement our own connection pool. Fortunately, pgx already has a
perfectly usable one built for us. Even better, it offers better performance
than pq due largely to its use of binary encoding.

Please see the godocs for more info and examples.

主要指標

概覽
名稱與所有者bgentry/que-go
主編程語言Go
編程語言Go (語言數: 1)
平台
許可證MIT License
所有者活动
創建於2014-10-25 06:18:15
推送於2023-11-20 12:50:47
最后一次提交2023-11-12 17:12:36
發布數3
最新版本名稱v1.0.1 (發布於 2018-02-08 16:36:43)
第一版名稱v0.5.0 (發布於 2017-07-28 10:20:00)
用户参与
星數325
關注者數12
派生數48
提交數52
已啟用問題?
問題數21
打開的問題數1
拉請求數8
打開的拉請求數0
關閉的拉請求數20
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?