Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

It is possible to implement hot code swapping with Haskell? I was reading about Erlang which sparked up my interest, I would like to use these features with Haskell.

share|improve this question

2 Answers

up vote 8 down vote accepted

See the package hotswap, which was designed for exactly this purpose.

share|improve this answer
2  
any experience with it for large web/cloud based projects? – pyCthon Nov 6 '12 at 20:11
3  
There's also dyre and the GHC API. – Daniel Wagner Nov 6 '12 at 20:31
1  
@DanielWagner dyre looks more promising – pyCthon Nov 6 '12 at 23:19

There is plugins package in Cabal, which provides facilities for loading plugins code. But in general Haskell is much more hostile to changing code in runtime than dynamic, bytecode-driven Erlang.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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