Tagged Questions
The background-process tag has no wiki summary.
22
votes
7answers
11k views
Message Queues in Ruby on Rails
What message queues are people using for their Rails apps and what was the driving force behind the decision to choose it. Does the latest Twitter publicity over their in house queue Starling falling ...
15
votes
8answers
11k views
PHP Background Processes
I'm trying to make a PHP script, I have the script finished but it takes like 10 minutes to finish the process it is designed to do. This is not a problem, however I presume I have to keep the page ...
12
votes
7answers
7k views
Ruby on Rails: How to run things in the background?
When a new resource is created and it needs to do some lengthy processing before the resource is ready, how do I send that processing away into the background where it won't hold up the current ...
10
votes
1answer
3k views
Spawn a background process in Ruby
I'm writing a ruby bootstrapping script for a school project, and part of this bootstrapping process is to start a couple of background processes (which are written and function properly). What I'd ...
8
votes
2answers
137 views
Keep a Service running even when phone is asleep?
I have a Service in my application which is designed to run every 10 minutes. It basically checks up on our servers to see if everything is running properly and notifies the user of any problems. I ...
7
votes
4answers
174 views
Can the R console support background tasks or interrupts (event-handling)?
While working in an R console, I'd like to set up a background task that monitors a particular connection and when an event occurs, another function (an alert) is executed. Alternatively, I can set ...
7
votes
4answers
1k views
How to implement background processing for ASP.Net MVC website in a shared hosting environment?
I am developing my first web application using ASP.Net MVC, and I am in a situation where I would like a background service to process status notifications outside of the application, not unlike the ...
6
votes
4answers
1k views
iOS Voip Socket will not run in background
I am getting a VOIP socket to run in the background in an iOS application.
My connection works fine, but it won't wake up when my app goes into the background. If I open the app back up, though, it ...
6
votes
3answers
469 views
PHP background process
I've wrote a php irc bot, but i need it to work in the background. With this there'd be no quits or so. What is the best way to do this?
Thanks and Regards.
6
votes
1answer
225 views
sequentially executing background processes unix
I have two scripts say 'S1' and 'S2'. I execute these scripts as,
nohup S1 &
nohup S2 &
But I would like them to execute sequentially. ie., S2 should execute only on successful ...
5
votes
3answers
135 views
Java Servlets : “best practice” for running background tasks?
I'm working on a web application which needs to clear expired cache elements now and then. I'd like to do this using the Quartz framework, and have a separate job to take part of this.
Now, I've used ...
4
votes
2answers
127 views
Ocaml: Getting CPU usage of process
What I want to do
I have a computationally intensive OCaml application and I'd like it to run in the background without disturbing normal computer usage. I'd like to present the users with two ...
4
votes
4answers
564 views
Progress Dialog dismissing problem
I have a situation where I am loading a bunch of images. During this process, I am trying to show a progress Dialog until the images get loaded fully. I have overrided the onBackPressed() method, such ...
4
votes
4answers
958 views
How to run process as background and never die?
I connect to the linux server via putty SSH. I tried to run it as a background process like this:
$ node server.js &
However, after 2.5 hrs, the terminal becomes inactive and the process ...
4
votes
3answers
453 views
How to kill background process from system function call
How can I kill a background process that was executed using a system function call in C language. Like for example I have a compiled application call "fooprocess". Then I want to write a program that ...
4
votes
3answers
503 views
Background process is exiting faster than I can add its pid for management
I'm creating background processes in C using fork().
When I created one of these processes, I add its pid to an array so I can keep track of background processes.
pid = fork();
if(pid == ...
4
votes
3answers
1k views
how to manage and queue background jobs
A web app that launches cpu intensive background jobs in the background whenever users call it.
example: youtube.com. people upload videos, it gets converted in background job.
how can you deal with ...
4
votes
2answers
623 views
Are PHP processes called via AJAX cancelled on “ESC”?
If I do an AJAX call, would the AJAX call be canceled if the user pressed "ESC" or leaved that page?
If the AJAX call gets canceled, would my PHP script continue to run until it finished what it was ...
4
votes
3answers
2k views
Is there any system level background queue process in iPhone?
I need to save a big file, sometime it takes a very long time to finish, user might just close the application. I am wondering whether the iPhone SDK could take over the unfinished big task.
...
4
votes
1answer
174 views
Is BITS still a good background update technology?
One of my hobby applications uses a SQLite back end to store the application data. The application is setup so that the user can click the typical "Check for Updates" button, which will query a ...
3
votes
1answer
32 views
Sending a form to a php script, that the user never knows or sees
On my site, I have a feature that allows you to follow the updates of other users. When a user makes a change to their info, anyone following him or her will be emailed of this change.
I have it set ...
3
votes
1answer
66 views
preventing Activity from doing something in background
I got the following scenario:
I am writing an app, which acts like a chat client. It connects to server on start and is listening for messages (the network things are handled by a service).
My problem ...
3
votes
1answer
509 views
Executing javascript in background using phonegap
I've created an application that will need to fire javascript events every "X" minutes. I'm using phone gap build to deploy on Android/iPhone/Blackberry, but I'm of course stuck, as the javascript ...
3
votes
1answer
236 views
List of iOS multi tasking APIs/processes
Is there a list of which iOS APIs and processes will run when 3rd party apps are in the background? I can't seem to find anything anywhere so a pointer would be great
3
votes
1answer
1k views
WP7 Invalid cross-thread access - ScheduledTaskAgent
In WP7 app I am calling some code to update a live tile from the onInvoke method on the ScheduledAgent class.
Getting an invalid cross-thread error.
The line it is failing on is
var ...
3
votes
4answers
2k views
PHP exec() as Background Process (Windows Wampserver Environment)
I'm trying to setup a php trigger file that will set off a background process. (see this question)
I'm doing this on a Windows Wampserver environment.
So for example I have trigger.php that runs the ...
3
votes
1answer
358 views
Use php to trigger another php script, then ignore
What I'm trying to work out how to do is this: I've got a php file let's call trigger.php that runs some php code that sets off another php file we'll call backgroundProcess.php to start processing.
...
3
votes
1answer
2k views
Background timer task in JSP/Servlet web application
I want to retrieve from subscription and store feeds to DB from subscription after every 6 hours. I want to have a timer thread in background to accomplish this task.
What's the best way? A normal ...
3
votes
1answer
2k views
iOS 4 VOIP app responding in the background
I have an iPhone VOIP app that copes with multi-multi transmit and receive (ie teleconferencing) set up using BSD sockets. I would like it to be able to respond to incoming requests when it is in the ...
3
votes
6answers
123 views
PHP: Prevent a function from returning value?
How could I make sure that the startProcess(); function is being called, but without halting the execution for myFunction(). I'll guess that there's a way to call a function and prevent it from ...
3
votes
3answers
620 views
PHP Launch script after background process completes?
I am converting a PDF with PDF2SWF and Indexing with XPDF.. with exec.. only this requires the execution time to be really high.
Is it possible to run it as background process and then launch a ...
3
votes
6answers
5k views
how to run my application in background in iphone?
I want to run my timer in background even when app is not running. Because I want to get gps cordinate of the user after some time interval. What is the method to do this?
3
votes
5answers
901 views
Multiple Uploads to Amazon S3 from Ruby on Rails - What Background Processing System to Use?
I'm developing a Ruby on Rails application that needs to allow the user to simultaneously upload 16 high-quality images at once.
This often means somewhere around 10-20 megabytes (sometimes more), ...
3
votes
7answers
1k views
How to make a Linux Service that Accepts Commands via Web Server?
I need an application to be running in the background on my web server, but I need to be able to start/stop the application with root privileges.
In order to do this, I want to have a service running ...
2
votes
2answers
20 views
Rails Creating new thread or Background process
I have an issue of Time out error when i click on the Export to Excel link in my application, due to heavy db transactions.
I want to change this functionality to the background so that user able to ...
2
votes
1answer
36 views
How do I keep a function running as a background process after redirect()?
I have this in my controller:
function foo() {
// my code
redirect(site_url('competitor/main'), 'refresh');
$this->foo2();
}
function foo2() {
// upload a file
}
How do I keep ...
2
votes
0answers
28 views
Advice on determining close locations while iPhone app in background
I need some advice for a location based iPhone app.
I'm building an app that informs the user of nearby locations. When the app is in the foreground it will use the normal ...
2
votes
0answers
130 views
How Nike+ GPS on iPhone receives accelerometer updates in the background?
The new Nike+ GPS application for iOS 5 is able to process accelerometer events in the background (thus allowing for indoor treadmill tracking). How is this possible? When I put my application in ...
2
votes
4answers
106 views
Run a second php file with a 20 second delay
I need to run a second php file in the background. The problem is that this file needs to only run 20 seconds after the current file has completed. I have used exec("php test_script.php") to run the ...
2
votes
3answers
74 views
How does this other version of the bash fork bomb work?
I get the general idea of how this common version
:(){ :|:& };:
of the bash fork bomb works.
However, I've seen another version (for bash in particular)
#!/bin/bash
$0 &
$0 &
on the ...
2
votes
3answers
25 views
queue on WCF web service - can you implement something like a background task
I have a service that does image processing on an image supplied by the client.
Each processing takes CPU (3min aprox runtime/image), so I will not allow more than 1 image to be processed at a time.
...
2
votes
2answers
110 views
Azure: Combining web and worker role: App pool recycle
I'm planning to do some light background processing in Azure. I already have a webrole running and would like to use the same role in order I don't have to use (and pay!) a dedicated worker role for ...
2
votes
1answer
140 views
How to notify content-resolver after data changed in database?
I've created one application that is inserting messages programmatically. In that application running successfully.
It'll inserted the message whatever given in record. After, you'll not able to see ...
2
votes
3answers
100 views
PHP exec() in Ubuntu — is there a limitation to the size of arguments you can pass in?
I'm seeing "getconf ARG_MAX" from command line return a big number (2,097,152 bytes), and the argument I'm passing exec is a fraction of that (229,650), but my exec keeps dying and I can't figure out ...
2
votes
3answers
82 views
Waiting for a background thread to complete
Sorry if this is a duplicate, but I'm not quite sure what terms I need to use to find existing answers to this question.
I'm trying to improve start-up performance of an application, the pseudo-code ...
2
votes
1answer
55 views
Background function in asp.net
Is it possible to write a background function in a master page that triggers after a specific period of time, say 5 hours?
function()
{
execute code from the clsGeneral Class
}
Please ...
2
votes
1answer
108 views
How is & implemented in bash under the hood?
& # disown the functions
As we all know & put a task into background, and most importantly disowns the task.
But how is it achieved?
2
votes
2answers
234 views
What causes apps to crash on resume after a long time in background?
I'm finding that after my app has been in the background for a while, (half hour + maybe) it crashes immediately on resume.
Crash log reveals that it is EXC_BAD_ACCESS, but I'm at loss for how to ...
2
votes
2answers
247 views
random background bubbles
according to a main content div i'm trying creating randomly background floating bubbles
this is my piece of code
CSS
parent {
left: 0;
top: 0;
width: 400px;
height: 100%;
}
...
2
votes
1answer
975 views
Keep the code Running In background in Ios
I want to run code in background for an infinite time and not for only 10 mins. I am not using Music or GPS or Viop. I want to show continuous local notification with some time interval. I have ...