Set -leveldbFlushOnMutate to false by default.

This commit is contained in:
Julius Volz 2013-03-12 10:25:52 -07:00 committed by Matt T. Proud
parent 8939e0723a
commit f238b23b04
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ import (
)
var (
leveldbFlushOnMutate = flag.Bool("leveldbFlushOnMutate", true, "Whether LevelDB should flush every operation to disk upon mutation before returning (bool).")
leveldbFlushOnMutate = flag.Bool("leveldbFlushOnMutate", false, "Whether LevelDB should flush every operation to disk upon mutation before returning (bool).")
leveldbUseSnappy = flag.Bool("leveldbUseSnappy", true, "Whether LevelDB attempts to use Snappy for compressing elements (bool).")
leveldbUseParanoidChecks = flag.Bool("leveldbUseParanoidChecks", true, "Whether LevelDB uses expensive checks (bool).")
)