You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Boyle Owen <Ow...@swx.com> on 2004/01/21 10:07:57 UTC

RE: [users@httpd] Apache Modules

> IncrediMail - Email has finally evolved - Click Here

No it hasn't - it is horrible!  Plain text please!

If your CGI is perl-based, you might try mod_perl. It loads a perl
interpreter into apache at start-up and allows you to keep applications
in memory. Check mod_perl docs for details (http://perl.apache.org/).

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 


-----Original Message-----
From: Kaneshanathan Srivisagan [mailto:visagan@millenniumit.com]
Sent: Mittwoch, 21. Januar 2004 21:15
To: users@httpd.apache.org
Subject: [users@httpd] Apache Modules


Hi ,
     Can i have a memory persistent module in apache?
I used a dynamic module.it serves the request and as soon as it is
completed it goes out of memory. but i want it to be in memory 
If anybody knows about it please reply.
visagan



____________________________________________________
  


Diese E-mail ist eine private und persönliche Kommunikation. Sie hat
keinen Bezug zur Börsen- bzw. Geschäftstätigkeit der SWX Gruppe. This
e-mail is of a private and personal nature. It is not related to the
exchange or business activities of the SWX Group. Le présent e-mail est
un message privé et personnel, sans rapport avec l'activité boursière du
Groupe SWX.

This message is for the named person's use only. It may contain
confidential, proprietary or legally privileged information. No
confidentiality or privilege is waived or lost by any mistransmission.
If you receive this message in error, please notify the sender urgently
and then immediately delete the message and any copies of it from your
system. Please also immediately destroy any hardcopies of the message.
You must not, directly or indirectly, use, disclose, distribute, print,
or copy any part of this message if you are not the intended recipient.
The sender's company reserves the right to monitor all e-mail
communications through their networks. Any views expressed in this
message are those of the individual sender, except where the message
states otherwise and the sender is authorised to state them to be the
views of the sender's company. 



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] Apache Modules

Posted by Matthew Shannon <ma...@paycom.net>.
I may have misunderstood the question, but it sounds like what you want
could be attained by just compiling the module in statically at Apache
build time.

-matt


On Wed, 2004-01-21 at 15:59, Kaneshanathan Srivisagan wrote:
> hi, thanks Boyle Owen for the info. but what i am having is a c++
> program to handle all the stuff i required. what i wanted is to add
> this to the apache server. The program should run with apache core for
> the life time of httpd and serve the web requests. Is it possible?  
> any one have ideas to implement it in C++. please help me.   visagan 
> -------Original Message-------   From: users@httpd.apache.org Date:
> Wednesday, January 21, 2004 01:10:56 AM To: users@httpd.apache.org
> Subject: RE: [users@httpd] Apache Modules  > IncrediMail - Email has
> finally evolved - Click Here
> 
> No it hasn't - it is horrible! Plain text please!
> 
> If your CGI is perl-based, you might try mod_perl. It loads a perl
> interpreter into apache at start-up and allows you to keep
> applications
> in memory. Check mod_perl docs for details (http://perl.apache.org/).
> 
> Rgds,
> Owen Boyle
> Disclaimer: Any disclaimer attached to this message may be ignored. 
> 
> 
> -----Original Message-----
> From: Kaneshanathan Srivisagan [mailto:visagan@millenniumit.com]
> Sent: Mittwoch, 21. Januar 2004 21:15
> To: users@httpd.apache.org
> Subject: [users@httpd] Apache Modules
> 
> 
> Hi ,
> Can i have a memory persistent module in apache?
> I used a dynamic module.it serves the request and as soon as it is
> completed it goes out of memory. but i want it to be in memory 
> If anybody knows about it please reply.
> visagan
> 
> 
> 
> 
> ____________________________________________________
>   IncrediMail - Email has finally evolved - Click Here
> 
> ______________________________________________________________________
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: [SPAM] - RE: [users@httpd] Apache Modules - Email found in subject

Posted by Luis Fernando Gallegos Valencia <lf...@pichincha.com>.
On Wed, 2004-01-21 at 18:59, Kaneshanathan Srivisagan wrote:
>hi,
>thanks Boyle Owen for the info. but what i am having is a c++ program
>to handle all the stuff i required. what i wanted is to add this to the
>apache server. The program should run with apache core for the life
>time of httpd and serve the web requests.
>Is it possible?

- You can find information here (test if it is thread safe):
www.fastcgi.com

- Also you can make a server program  that communicates with your apache
programs using sockets or IPCs.

	Luis




On Wed, 2004-01-21 at 18:59, Kaneshanathan Srivisagan wrote:
> hi,
> thanks Boyle Owen for the info. but what i am having is a c++ program
> to handle all the stuff i required. what i wanted is to add this to
> the apache server. The program should run with apache core for the
> life time of httpd and serve the web requests.
> Is it possible?
>  
> any one have ideas to implement it in C++.
> please help me.
>  
> visagan 
>  
> -------Original Message-------
>  
> From: users@httpd.apache.org
> Date: Wednesday, January 21, 2004 01:10:56 AM
> To: users@httpd.apache.org
> Subject: RE: [users@httpd] Apache Modules
>  
> > IncrediMail - Email has finally evolved - Click Here
> 
> No it hasn't - it is horrible! Plain text please!
> 
> If your CGI is perl-based, you might try mod_perl. It loads a perl
> interpreter into apache at start-up and allows you to keep
> applications
> in memory. Check mod_perl docs for details (http://perl.apache.org/).
> 
> Rgds,
> Owen Boyle
> Disclaimer: Any disclaimer attached to this message may be ignored. 
> 
> 
> -----Original Message-----
> From: Kaneshanathan Srivisagan [mailto:visagan@millenniumit.com]
> Sent: Mittwoch, 21. Januar 2004 21:15
> To: users@httpd.apache.org
> Subject: [users@httpd] Apache Modules
> 
> 
> Hi ,
> Can i have a memory persistent module in apache?
> I used a dynamic module.it serves the request and as soon as it is
> completed it goes out of memory. but i want it to be in memory 
> If anybody knows about it please reply.
> visagan
> 
> 
> 
> 
> ____________________________________________________
>   IncrediMail - Email has finally evolved - Click Here
> 
> ______________________________________________________________________
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
>    "   from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: [users@httpd] Apache Modules

Posted by Kaneshanathan Srivisagan <vi...@millenniumit.com>.
hi,
thanks Boyle Owen for the info. but what i am having is a c++ program to
handle all the stuff i required. what i wanted is to add this to the apache
server. The program should run with apache core for the life time of httpd
and serve the web requests.
Is it possible?

any one have ideas to implement it in C++.
please help me.

visagan 

-------Original Message-------

From: users@httpd.apache.org
Date: Wednesday, January 21, 2004 01:10:56 AM
To: users@httpd.apache.org
Subject: RE: [users@httpd] Apache Modules

> IncrediMail - Email has finally evolved - Click Here

No it hasn't - it is horrible! Plain text please!

If your CGI is perl-based, you might try mod_perl. It loads a perl
interpreter into apache at start-up and allows you to keep applications
in memory. Check mod_perl docs for details (http://perl.apache.org/).

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 


-----Original Message-----
From: Kaneshanathan Srivisagan [mailto:visagan@millenniumit.com]
Sent: Mittwoch, 21. Januar 2004 21:15
To: users@httpd.apache.org
Subject: [users@httpd] Apache Modules


Hi ,
Can i have a memory persistent module in apache?
I used a dynamic module.it serves the request and as soon as it is
completed it goes out of memory. but i want it to be in memory 
If anybody knows about it please reply.
visagan