Skip to content

Commit

Permalink
Format some comments for better GoDoc experience
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeliu committed May 10, 2018
1 parent abe003b commit 8ea0cc8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
// the safety of concurrent readers. See https://github.com/mattn/go-sqlite3/issues/148 for details.
//
// As a result, here are some suggestions:
// 1. Perform as many concurrent GetValue(s) operations as you like;
// 2. Use only one goroutine to perform SetValue(s)/DelValue(s) operations;
// 3. Or implement a simple busy waiting yourself on a go-sqlite3.ErrLocked error if you must use
// concurrent writers.
//
// 1. Perform as many concurrent GetValue(s) operations as you like;
// 2. Use only one goroutine to perform SetValue(s)/DelValue(s) operations;
// 3. Or implement a simple busy waiting yourself on a go-sqlite3.ErrLocked error if you must use
// concurrent writers.
package storage

import (
Expand Down

0 comments on commit 8ea0cc8

Please sign in to comment.