Skip to content

Commit

Permalink
Update config example
Browse files Browse the repository at this point in the history
  • Loading branch information
brinchj committed Mar 13, 2012
1 parent 57d5c4c commit 32dcdf9
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/Config.hs.example
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ hindsightBase = "~/.hindsight"
backendModule = "~/.hindsight/modules/local"


-- How often to flush internal state to disk? (seconds)
flushInterval :: Integer
flushInterval = 600


-- Debugging (default: DebugOff)
data Debug = DebugOn | DebugOff
deriving Eq
Expand All @@ -28,12 +23,12 @@ chunkMode = Fixed
-- chunkMode = RSync


-- Compressions of blobs (default: Snappy)
-- Compressions of blobs (default: GZip)
-- (This will not affect internal compression of tree nodes)
data CompressionMode = CompressionOff | Snappy
data CompressionMode = CompressionOff | GZip
deriving Eq

compressionMode = Snappy
compressionMode = GZip

-- Interval between flushes of the system. Work done in the interval might need
-- to be redone in the event of a crash. In seconds.
Expand Down

0 comments on commit 32dcdf9

Please sign in to comment.