Rahul Muttineni

Results 228 comments of Rahul Muttineni

Java doesn't really have much of a concept of "network" and "host" byte order. We did tackle this problem in the `network` package itself. Take a look at the [network](https://github.com/typelead/eta-hackage/blob/master/patches/network-2.6.3.2.patch)...

And on another note, Eta has a nice (hidden) feature that all Eta closures are serialisable so you can send closures over the wire w/o static pointers and distributed-process! The...

Thanks for the report! I did a brief investigation by compiling this program with `-ddump-stg` and decompiling the generated class files as well. It turns out the optimizations *are* happening...

Some notes on the investigation for this: 1. I did memory profiling in VisualVM and discovered that the entire list from 1 to 100,000,000 is retained along with all the...

Actually, the issue is not even `warp`. Turns out `warp` is actually not used by `servant` *anywhere* but they have it added as a dependency! The issue is `file-embed` that...

@rpeszek Temporary patches that just implement the functionality are more than welcome.

@rpeszek Things hanging up seems like a bug to report. I've been investigating a lot of these hanging bugs recently so please do report them. `wai-servlet-static` doesn't exist as far...

@rpeszek Yes, it does look like it's a result of my recent runtime changes. I'll take a look asap.

This is a great start thanks! The next step is to add the ETag stuff so that the browser doesn't have to download unchanged static content over and over again...

Sounds good! Great to see progress on this.