Skip to content

Commit

Permalink
README.md: add GoDoc badge (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdlayher authored and crawshaw committed Aug 3, 2018
1 parent 9547973 commit 7607d66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Go interface to SQLite.

[![Build Status](https://travis-ci.org/crawshaw/sqlite.svg?branch=master)](https://travis-ci.org/crawshaw/sqlite) (linux and macOS) [![Build status](https://ci.appveyor.com/api/projects/status/jh9xx6cut73ufkl8?svg=true)](https://ci.appveyor.com/project/crawshaw/sqlite) (windows)
[![GoDoc](https://godoc.org/crawshaw.io/sqlite?status.svg)](https://godoc.org/crawshaw.io/sqlite) [![Build Status](https://travis-ci.org/crawshaw/sqlite.svg?branch=master)](https://travis-ci.org/crawshaw/sqlite) (linux and macOS) [![Build status](https://ci.appveyor.com/api/projects/status/jh9xx6cut73ufkl8?svg=true)](https://ci.appveyor.com/project/crawshaw/sqlite) (windows)

This package provides a low-level Go interface to SQLite 3 designed to take maximum advantage of multi-threading. Connections are [pooled](https://godoc.org/crawshaw.io/sqlite#Pool) and take advantage of the SQLite [shared cache](https://www.sqlite.org/sharedcache.html) mode and the package takes advantage of the [unlock-notify API](https://www.sqlite.org/unlock_notify.html) to minimize the amount of handling user code needs for dealing with database lock contention.

Expand Down

0 comments on commit 7607d66

Please sign in to comment.