in reply to Most memory efficient way to threading

As an alternative to using threads (for simple socket communications), consider looking at AnyEvent resp. AnyEvent::HTTP, which will do nonblocking parallel HTTP transfers from a single thread. It's also fairly lightweight, but I haven't looked at its actual memory usage.

  • Comment on Re: Most memory efficient way to threading