5
votes
6answers
163 views
Seriously speeding up PHP?
I've been writing PHP for years, and have used every framework under the sun, but one thing has always bugged me... and that's that the whole bloody thing has to be interpreted and …
1
vote
4answers
35 views
How to use the cachegrind output to optimize the application
I need to improve the throughput of the system.
The usual cycle of optimization has been done and we have already achieved 1.5X better throughput.
I am now beginning to wonder if …
0
votes
2answers
57 views
Load Ruby on Rails models without loading the entire framework
I'm looking to create a custom daemon that will run various database tasks such as delaying mailings and user notifications (each notice is a separate row in the notifications tabl …
1
vote
3answers
87 views
How can a Perl CGI script communicate with a daemon on the webserver?
I am building a Web interface to monitor an embedded system.
I have built a Perl script which runs remote commands and gathers output from that system.
Now what I need is a Web int …
3
votes
4answers
66 views
How to IPC between PHP clients and a C Daemon Server?
Hi all, and thanks for taking a look at the question.
The background
I have several machines that continuously spawn multiple (up to 300) PHP console scripts in a very short time …
2
votes
1answer
61 views
Create a daemon with double-fork in Ruby
What is the proper way to create a well-behaved Unix or Linux daemon in Ruby?
What is the definition of a well-behaved daemon anyway, and how would one write such a program in Rub …
0
votes
1answer
15 views
Windows SMTP server for email api
Hi,
I'm architecting a web service where users can update, for example, a blog by sending an email. What's a good email server for Windows for this? Any other advice / examples ap …
7
votes
16answers
719 views
Is it wise to use PHP for a daemon?
Hello all,
I wish to create a background process and I have been told these are usually written in C or something of that sort. I have recently found out PHP can be used to create …
0
votes
2answers
74 views
Multiple programs using the same UDP port? Possible?
I currently have a small Python script that I'm using to spawn multiple executables, (voice chat servers), and in the next version of the software, the servers have the ability to …
0
votes
4answers
70 views
How to mimic DropBox functionality with Ruby script?
I would like to upload documents to GoogleDocs every time the OS hears that a file was added/dragged/saved in a designated folder, just the way DropBox uploads a file when you save …
4
votes
5answers
845 views
Choosing and deploying a comet server.
I want to push data to the browser over HTTP without killing my django/python application.
I decided to use a comet server, to proxy requests between my application and the client …
0
votes
2answers
96 views
Why does my Python daemon hog all my CPU while sleeping?
I'm using this recipe: http://code.activestate.com/recipes/278731/ on an Ubuntu server.
I make a daemon instance like this:
class MyDaemon(Daemon):
def run(self):
whi …
2
votes
9answers
458 views
Connect PHP code to Java backend
I am implementing a website using PHP for the front end and a Java service as the back end. The two parts are as follows:
PHP front end listens to http requests and interacts wit …
1
vote
3answers
66 views
Daemon dies unexpectedly
I have a python script, which I daemonise using this code
def daemonise():
from os import fork, setsid, umask, dup2
from sys import stdin, stdout, …
2
votes
1answer
41 views
stateful processes (daemons?) in Tomcat?
I'm not exactly sure what question to ask here since I don't know the vocabulary...
Tomcat servlets (and any server for that matter) work nicely if they are stateless and respond …
