0
votes
1answer
24 views
Writing daemon in objective c
I need to write a daemon, much like windows service on os x using objective c. Can anyone point to some sample? or guide me about how to do this?
1
vote
2answers
110 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
4answers
44 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 = …
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 …
5
votes
6answers
201 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 …
3
votes
4answers
76 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
107 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?
1
vote
3answers
105 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 …
1
vote
4answers
50 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
69 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 …
0
votes
2answers
100 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 …
0
votes
4answers
85 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 it in the DropBox …
0
votes
1answer
19 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,
…
0
votes
2answers
102 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):
while True:
…
1
vote
3answers
74 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, stderr
…
