Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
73 views

New linux tc queuing discipline to create bursts…ran out of knowledge

I want to write a new tc queuing discipline for the linux kernel. The goal is to queue up eg. ten packets and then send them all out (I know, that's not really a good thing for networking, but I want ...
4
votes
1answer
162 views

R job job queueing / workload management

I have been spending some time on Google looking for a queuing / load balancer package for R. What I am trying to achieve: executing multiple independant from eachother R functions from remote ...
4
votes
1answer
217 views

Does SQL Server have a feature similar to Oracle Streams Advanced Queuing?

Oracle Streams AQ (Advanced Queuing) provides highly scalable database-backed queuing functionality. Does an equivalent feature exist in SQL Server (any version)? Note: I do not mean simply using a ...
3
votes
6answers
648 views

Transactional queueing/dequeueing

I need to queue events and tasks for external systems in a reliable/transactional way. Using things like MSMQ or ActiveMQ look very seductive, but the transactional part becomes complicated (MSDTC, ...
2
votes
1answer
293 views

ASP.net session request queuing

It seems to me that ASP.net queues up all requests that use the same Session ID. Let's say you've got 3 pages. Default.aspx protected void Page_Load(object sender, EventArgs e) { Session["asdf"] ...
1
vote
1answer
46 views

Which queuing implementation is advisable if we want to keep things simple?

our needs for a queuing solution are fairly simple, a producer needs to put things in a persistent queue and these need to be handled by a consumer. The queuing systems needs to be integrated within a ...
1
vote
2answers
88 views

Triggering a future event based on a current event

i would like to trigger an event sometime in the future based on an event that is currently happening. I do not expect the volume to be too high, so i care a lot more about simplicity than ...
0
votes
2answers
178 views

Don't queue fadeTo(), fadeIn()/fadeOut()

I have the following animations: $('#id').animate({'margin-top': 100, 'margin-left': 100}, {queue: false, duration: 1000}); $('#id2').fadeTo(1000, 1); this seems to be queuing, how can i make sure ...
0
votes
3answers
518 views

Hornetq messages still remaining in queue after consuming using core api

I am new to HornetQ so please bear with me. Let me first tell you my requirnments : I need a messages queuing middleware which can pass messages , of about 1k in size, between diffrent ...
0
votes
0answers
59 views

Gearman,GearmanUDF,MYSQL

I am using the Gearman MYSQL UDF,i successfully installed the Gearman MYSQL UDF but when i am excuting the quries on mysql I am getting an error "shared library 'libgearman_mysql_udf.so' (errno: 22 ...
0
votes
1answer
71 views

Getting functions to execute at the right time (queued or concurrently)

I have written a little script that randomly shuffles a series of divs - this works as expected (or hoped). My problem is in the implementation. I want the divs to fade out, to be shuffled and to ...
0
votes
0answers
37 views

queuing system that allows you to dequeue multiple items at once

I'm wondering if there is a queuing system that allows one to dequeue multiple items at once. A quick google search turned up oracle's Advanced Queuing, but the use case doesn't warrant anything as ...
0
votes
1answer
53 views

Best Method for incorporating 3rd party api's into my php web app

Using php I'm trying to figure out the most efficient way to design my web app to incorporate 3rd party API's. The user of the app does not need to see the response from the api call. So for ...
0
votes
1answer
58 views

NServicebus DNS Entry for Machine location

I am trying to use a DNS entry for my NServicebus queue endpoint but no messages are being sent. It works fine when I enter the computer name or an IPAddress. I can ping the record and it resolves ...
0
votes
2answers
263 views

Using Javascript to perform a process and send updates/callbacks to a webserver

I am working on a process to allow people to upload PDF files and manage the document (page order) via a web based interface. The pages of the PDF file need to be cropped to a particular size for ...