diff options
author | Joey Hess <joey@kitenet.net> | 2012-01-29 22:55:06 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-01-29 22:55:06 -0400 |
commit | a964012fc36d22e4554dd12e3594579fb3190501 (patch) | |
tree | 31c3a5ea4fb78088b4981eb4185737353ec1ff3e /Git/CatFile.hs | |
parent | 0609e102396083afa6380f8b67a69fa849235d16 (diff) |
switch to the strict state monad
I had not realized what a memory leak the lazy state monad could be,
although I have not seen much evidence of actual leaking in git-annex.
However, if running git-annex on a great many files, this could matter.
The additional Utility.State.changeState adds even more strictness,
avoiding a problem I saw in github-backup where repeatedly modifying
state built up a huge pile of thunks.
Diffstat (limited to 'Git/CatFile.hs')
-rw-r--r-- | Git/CatFile.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Git/CatFile.hs b/Git/CatFile.hs index 16f0b11b9..2a2eb5e6f 100644 --- a/Git/CatFile.hs +++ b/Git/CatFile.hs @@ -13,7 +13,6 @@ module Git.CatFile ( catObject ) where -import Control.Monad.State import System.Cmd.Utils import System.IO import qualified Data.ByteString.Char8 as S |