1
0
Fork 0

Update CHANGELOG

master
Philip O'Toole 3 years ago
parent 3907132761
commit a4c4374daf

@ -6,6 +6,7 @@
### Implementation changes and bug fixes ### Implementation changes and bug fixes
- [PR #857](https://github.com/rqlite/rqlite/pull/857): Use Protobufs as core data model. - [PR #857](https://github.com/rqlite/rqlite/pull/857): Use Protobufs as core data model.
- [PR #858](https://github.com/rqlite/rqlite/pull/858): Create dedicated client for talking to a cluster service. - [PR #858](https://github.com/rqlite/rqlite/pull/858): Create dedicated client for talking to a cluster service.
- [PR #862](https://github.com/rqlite/rqlite/pull/862): Add detailed SQLite memory statistics to status output.
## 6.1.0 (August 5th 2021) ## 6.1.0 (August 5th 2021)
This release makes significant changes to SQLite database connection handling, resulting in proper support for high-performance concurrent reads of in-memory databases (an in-memory SQLite database is the default option for rqlite). This release makes significant changes to SQLite database connection handling, resulting in proper support for high-performance concurrent reads of in-memory databases (an in-memory SQLite database is the default option for rqlite).

@ -749,7 +749,6 @@ func (db *DB) Dump(w io.Writer) error {
func (db *DB) memStats() (map[string]int64, error) { func (db *DB) memStats() (map[string]int64, error) {
ms := make(map[string]int64) ms := make(map[string]int64)
for _, p := range []string{ for _, p := range []string{
"max_page_count", "max_page_count",
"page_count", "page_count",
@ -765,7 +764,6 @@ func (db *DB) memStats() (map[string]int64, error) {
} }
ms[p] = res[0].Values[0].Parameters[0].GetI() ms[p] = res[0].Values[0].Parameters[0].GetI()
} }
return ms, nil return ms, nil
} }

Loading…
Cancel
Save