Re: [Haskell-cafe] Re: How to serialize thunks?

2006-12-22 Thread Bulat Ziganshin
Hello Joachim, Friday, December 22, 2006, 2:30:32 AM, you wrote: There is an interesting technique thay allows you to serialize infinite, lazy or functional values: don't try to describe how those values look, but how they came to be. Ah, that's an interesting approach that I haven't

[Haskell-cafe] Re: How to serialize thunks?

2006-12-21 Thread Joachim Durchholz
Krasimir Angelov schrieb: All those libraries really force the data because they all are written in Haskell. If you want to serialize thunks then you will need some support from RTS. Good to hear that my conjectures aren't too far from reality. Does any Haskell implementation have that kind

Re: [Haskell-cafe] Re: How to serialize thunks?

2006-12-21 Thread Krasimir Angelov
On 12/21/06, Joachim Durchholz [EMAIL PROTECTED] wrote: Krasimir Angelov schrieb: All those libraries really force the data because they all are written in Haskell. If you want to serialize thunks then you will need some support from RTS. Good to hear that my conjectures aren't too far from

Re: [Haskell-cafe] Re: How to serialize thunks?

2006-12-21 Thread Neil Mitchell
Hi All those libraries really force the data because they all are written in Haskell. If you want to serialize thunks then you will need some support from RTS. Good to hear that my conjectures aren't too far from reality. Does any Haskell implementation have that kind of RTS support?

[Haskell-cafe] Re: How to serialize thunks?

2006-12-21 Thread Joachim Durchholz
Tomasz Zielonka schrieb: On Wed, Dec 20, 2006 at 11:03:42PM +0100, Joachim Durchholz wrote: If yes: are there workarounds? I'd really like to be able to use infinite data structures in the data that I serialize. There is an interesting technique thay allows you to serialize infinite, lazy or