The Data.Binary documentation shows writing an instance by hand. Is there a way around this? I saw here there is another library, SerTH, which has a (Template Haskell based) deriving mechanism, but the link to it seems broken. Also, if you know other libraries, good performance is critical for us.

Thank you in advance!

link|improve this question

78% accept rate
GHC 7.2 supports this natively using default deriving... I wrote the code for it awhile back and it was pretty simple – alternative Jan 3 at 17:04
feedback

2 Answers

Neil Mitchells Derive package has a template haskell macro for deriving binary instances.

link|improve this answer
feedback

Since you asked about other libraries:

The cereal data serialisation library has cereal-derive, which works with the new Generics support in GHC 7.2. This has a compile-time speed advantage over Template Haskell (I tend to avoid TH these days just because it makes compilation even slower) and a run-time speed advantage over datatype-generic methods like SYB and Uniplate.

cereal is very similar to binary, but uses strict ByteStrings; binary hasn't been updated since 2009 and cereal has niceties such as IEEE-754 float format support, so I can't see any reason not to use it over binary if you want deriving.

link|improve this answer
cereal-derive is GPL3. This might be an issue for some use-cases. – user239558 Mar 29 at 9:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.