Skip to content

Commit

Permalink
chore: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
smsunarto committed Jun 28, 2024
1 parent e4eefc0 commit fb3e8f7
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
<div align="center">
<h3>go-jobqueue</h3>
# go-jobqueue

A durable embedded job queue for Go apps built on top of [BadgerDB](https://github.com/dgraph-io/badger).
<br/>
<br/>
<a href="https://codecov.io/gh/Argus-Labs/go-jobqueue" >
<img alt="Code Coverage" src="https://codecov.io/gh/Argus-Labs/go-jobqueue/branch/main/graph/badge.svg?token=XMH4P082HZ"/>
<a href="https://codecov.io/gh/Argus-Labs/go-jobqueue" >
<img src="https://codecov.io/gh/Argus-Labs/go-jobqueue/graph/badge.svg?token=zvfS7xcv50" alt="Codecov" />
</a>

<a href="https://goreportcard.com/report/argus-labs/go-jobqueue">
<img src="https://goreportcard.com/badge/argus-labs/go-jobqueue" alt="Go Report Card">
<img src="https://goreportcard.com/badge/argus-labs/go-jobqueue" alt="Go Report Card" />
</a>

<a href="https://pkg.go.dev/argus-labs/go-jobqueue">
<img src="https://pkg.go.dev/badge/argus-labs/go-jobqueue.svg" alt="Go Reference" />
</a>
</div>

---


**go-jobqueue** is designed to be a lightweight and portable alternative to a full-fledged job queue like [RabbitMQ]
(https://www.rabbitmq.com) that can be embedded into a single binary with your app, thereby reducing deployment and
maintenance complexity.
**go-jobqueue** is a durable embedded job queue for Go apps built on top of [BadgerDB](https://github.com/dgraph-io/badger) that provides a simple API for enqueuing jobs and processing them asynchronously while ensuring durability. It serves as a lightweight alternative to a full-fledged job queue like [RabbitMQ](https://www.rabbitmq.com) that
can be embedded into a single binary with your app, thereby reducing deployment and maintenance complexity.

## Features
- Easily integrates with any existing Go programs with no service dependencies (i.e. RabbitMQ).
Expand Down

0 comments on commit fb3e8f7

Please sign in to comment.