6
votes
6answers
901 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 (though I still …
1
vote
2answers
107 views
What and how much overheads happen when I use a Reference class?
I saw there is a daemon thread running whenever we create a referenced object using any Reference class like
WeakReference,
FinalReference,
SoftReference,
PhantomReference,
Referemce
And …
0
votes
3answers
32 views
Organizing logs with log4j
Hey all,
I'm currently working on a Linux daemon written in Java. What is the common naming scheme for logs?
Right now I'm thinking of doing something like:
DEBUG = /var/log/myapp.debug
INFO = …
0
votes
1answer
175 views
Java Service Wrapper 3.2.3 on Mac OS X 64-bit
What's the best way to run an app using Java Service Wrapper 3.2.3 on Mac OS X 64-bit?
sh.script.in works, but there is no macosx-universal-64 version of the wrapper native binary (on JSW's 3.2.3 …
2
votes
2answers
51 views
Linux Daemon written in Java location
I'm currently writing a Java daemon. I'm writing a script that will have the standard daemon commands (start, stop, restart, status) and I'm trying to decide on where things should go when installing …
1
vote
3answers
125 views
suggestions for a daemon that accepts zip files for processing
im looking to write a daemon that:
reads a message from a queue (sqs, rabbit-mq, whatever ...) containing a path to a zip file
updates a record in the database saying something like "this job is …
5
votes
6answers
196 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 executed every time …
1
vote
4answers
45 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 I can utilize the …
0
votes
2answers
64 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 table). I don't want to …
1
vote
3answers
95 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 interface which makes …
3
votes
4answers
72 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 frame. These scripts …
2
votes
1answer
92 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 Ruby?
0
votes
1answer
17 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 appreciated!
Thanks,
…
7
votes
16answers
735 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 a daemon and I was …
0
votes
2answers
92 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 receive heartbeat …
