Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Apache queries
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
MAASK Group  
View profile  
 More options Oct 3 2002, 7:22 am
Newsgroups: comp.infosystems.www.providers, comp.infosystems.www.servers, comp.infosystems.www.servers.mac, comp.infosystems.www.servers.misc
From: maask12...@hotmail.com (MAASK Group)
Date: 3 Oct 2002 04:22:04 -0700
Local: Thurs, Oct 3 2002 7:22 am
Subject: Apache queries
Hi,

    We wanted to know the working (shared memory related)  of Apache
server... as in at the lower level, what type of shared memory does it
use? like clone(), pthread_create(), mmap() or shmget()???
     Also where could we get the source code of Apache server?

Thanks & regards,
MAASK (maya, asmita, anu, snehal & krushna)


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jon Bell  
View profile  
 More options Oct 3 2002, 11:32 am
Newsgroups: comp.infosystems.www.providers, comp.infosystems.www.servers, comp.infosystems.www.servers.mac, comp.infosystems.www.servers.misc
From: jtbell...@presby.edu (Jon Bell)
Date: Thu, 3 Oct 2002 15:13:19 GMT
Local: Thurs, Oct 3 2002 11:13 am
Subject: Re: Apache queries
In article <891d79c5.0210030322.7ef13...@posting.google.com>,

MAASK Group <maask12...@hotmail.com> wrote:
>     Also where could we get the source code of Apache server?

<http://www.apache.org/>

--
Jon Bell <jtbell...@presby.edu>                     Presbyterian College
Dept. of Physics and Computer Science        Clinton, South Carolina USA


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Tom Harrington  
View profile  
 More options Oct 4 2002, 10:58 am
Newsgroups: comp.infosystems.www.providers, comp.infosystems.www.servers, comp.infosystems.www.servers.mac, comp.infosystems.www.servers.misc
From: Tom Harrington <t...@pcisys.no.spam.dammit.net>
Date: Fri, 04 Oct 2002 08:57:56 -0600
Local: Fri, Oct 4 2002 10:57 am
Subject: Re: Apache queries
In article <891d79c5.0210030322.7ef13...@posting.google.com>,
 maask12...@hotmail.com (MAASK Group) wrote:

> Hi,

>     We wanted to know the working (shared memory related)  of Apache
> server... as in at the lower level, what type of shared memory does it
> use? like clone(), pthread_create(), mmap() or shmget()???

The last time I looked at the Apache source code, it didn't use very
much shared memory, at least on Unix and similar systems.  It operates
on a scheme of multiple independent processes with their own memory
space.  Shared memory is used only for the "scoreboard", which keeps
track of the various processes and their state.

The shared-mem portions of the code were also the most complicated, at
least from a preprocessor point of view.  There were at the time about
eight different implementations, one of which would be selected based on
what was available on the target platform.  So the answer to your
question is "yes", it uses those types of shared memory, but to get a
more-specific answer you need to look at the source code.  Or at least
try running "nm" against a compiled copy to see what's there.

>      Also where could we get the source code of Apache server?

<http://httpd.apache.org/>

--
Tom Harrington, tph (at) pcisys (dot) net
"And you may ask yourself, well, how did I get here?"
-- Talking Heads


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »