The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
48 views

Refreshing knowledge in PHP/Apache/JS [closed]

I did an apprenticeship as a web developer. Finished one year ago. Know I'm a student again and I'd like to do some freelancer projects. But before I start with it, I want to refresh everything. There ...
1
vote
2answers
118 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 ...
0
votes
0answers
34 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
472 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
510 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
237 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 ...