bharath venkatesh wrote:
> hi,
> will this twisted,turbo gear etc help me to create a http server that
> can serve multiple clients concurrently
Yes. Google for the projects and do some reading, they are all serving
large web sites with sometimes havy demand.
> and also the http server whic
oh .. thanks for explaining since this is my first ever project i
don't know much ... can u give me a basic idea of how it(image_proxy_server)
can be done efficiently .. like serving many clients concurrently
On Feb 20, 2008 9:01 AM, Christian Heimes <[EMAIL PROTECTED]> wrote:
> bharath ve
bharath venkatesh wrote:
> hi,
> will this twisted,turbo gear etc help me to create a http server that can
> serve multiple clients concurrently
> and also the http server which i want to create in my project will not be
> doing any IO (it is not like frontend and backend ).. but it will act a
hi,
will this twisted,turbo gear etc help me to create a http server that can
serve multiple clients concurrently
and also the http server which i want to create in my project will not be
doing any IO (it is not like frontend and backend ).. but it will act as a
image_proxy_server i.e when a c
bharath venkatesh wrote:
> hi
>i want to create fast n efficient http server which serve multiple
> client concurrently .. so i thought of threading the http server using
Threads ain't efficient for IO bound problems like a HTTP server. Most
OSs have far better ways to deal with IO bound app
bharath venkatesh wrote:
> hi
>i want to create fast n efficient http server which serve multiple
> client concurrently .. so i thought of threading the http server using
>
> class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
> pass:
>
> as this creates an t
hi
i want to create fast n efficient http server which serve multiple
client concurrently .. so i thought of threading the http server using
class HTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
pass:
as this creates an threaded version of http server ... but i re