Skip to content

Release v0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 31 Oct 01:24
e0db94d

Notable change - WAL support

This release comes with WAL (Write Ahead Log) support, which means a certain level of durability is guaranteed because the data on the memory partition is appended to the log file on the disk.
WAL is enabled by default in on-disk mode. This slightly affects the write performance, so if you want to disable it, give -1 to WithWALBufferedSize() like:

	storage, err := tstorage.NewStorage(
		tstorage.WithDataPath("./data"),
		tstorage.WithWALBufferedSize(-1),
	)

Changelog

  • Release v0.3.0 (#35) - by GitHub
  • Bump pipecd/actions-gh-release to v2.1.0 - by nakabonne
  • Ensure to remove the oldest segment when flushing (#34) - by GitHub
  • Add support for Write Ahead Log (#28) - by GitHub
  • Bump Go from 1.16 to 1.17 (#33) - by GitHub