The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
96 views

The best way of coding web system in term of performance [closed]

So far I've been using IPB and my custom scripts all coded in PHP but I am really disappointed of the long term performance of it. I would like to move to native coding, the learning time to put into ...
-2
votes
0answers
110 views

How to implement HTTP /1.1Keep-alive feature in my web server [closed]

I am developing my web server. But I don't know how to add HTTP/1.1 Keep alive feature in my code. My task is I have to implement file-based multi-threaded web server with thread-pooling ...
0
votes
0answers
28 views

Do we need to use spring security if we are using tivoli/webseal to route all requests

In my application, the architecture goes like this: There is web server. The web server runs Tivoli/Webseal. It creates junctions to the portal server and then portal server dispatches requests to a ...
0
votes
1answer
453 views

What are the PHP web server architecture components and the purpose of each one of them?

Given below is an image of a basic PHP web server architecture: Would someone please explain the several components available and how they interact? I'm more concerned of how the PHP Core operates ...
1
vote
6answers
477 views

What's the simplest way to provide a portable, locally running webservice server application?

We have a large website running that offers a JsonRpc web service. For offline demonstration purposes, I want to realize a portable, locally running webserver with a minimalistic feature replication ...
5
votes
2answers
235 views

What are some of the major differences in process management between CGI and newer (better) technologies?

I know CGI spawns a new process for every HTTP request that it serves, while servlets use one Java process to serve many requests. What do other technologies (rails, WSGI/django, mod_php, asp.net ...
2
votes
3answers
1k views

Are there any non-blocking web servers for Java?

I was studying about the infrastructure being used by Facebook, as I was developing a website based on social interaction for a university project. Facebook is using Tornado Web Server as its ...