0
votes
0answers
9 views
In memcached, you can put a List as a value. Can you put a list in beanstalkd?
Actually, I would like to use this for logging.
I want to put a dictionary into beanstalkd.
Everytime someone goes into my website, I want to put a dictionary into beanstalkd, and then every night, I …
0
votes
4answers
42 views
Using Jquery for mouseover effect and queue
I've been looking around for the last couple hours on how to do this - can't find it anywhere.
I have several buttons (divs). It consists of a div within a div. The parent div has the normal button …
1
vote
3answers
77 views
Is there a Queue (PriorityQueue) implementation which is also a Set?
I'm looking for a PriorityQueue implementation which is also a Set.
The compareTo implementation if its elements must not have the requirement to be consistent with the implementation of equals.
Is …
0
votes
3answers
164 views
Best approach for thread synchronized queue
I have a queue in which I can enqueue different threads, so I can assure two things:
Request are processed one by one.
Request are processed in the arriving order
Second point is important. …
0
votes
2answers
16 views
Peek() and remove() methods for Queue implementation in Blackberry
Hi,
I want to implement peek and remove methods , similar to Java's Queue.peek() and Queue.remove() , in Blackberry application. I have a custom queue implementation ,but how do I get peek elements …
0
votes
2answers
140 views
Breadth First Binary Tree Traversal in Scheme
Hello,
I am trying to implement a breadth first (level) tree traversal. I'm very close, but I can't figure out how I'm getting duplicates. Any help is much appreciated. Thanks in advance.
JR
…
2
votes
8answers
97 views
C# - Moving files - to queue or multi-thread
I have an app that moves a project and its files from preview to production using a Flex front-end and a .NET web service. Currently, the process takes about 5-10 mins/per project. Aside from latency …
1
vote
2answers
24 views
Message Queues Vs DB Table Queue via CRON
We have a large project coming up soon with quite a lot of media processing (Images, Video) as well email output etc, the sort of stuff normally we'd put into a table called "email_queue" and we use a …
0
votes
1answer
21 views
Are Socket’s events queued in Flash?
I'm trying to implement a binary protocol between a flash application and a Custom Java Server using TCP/IP sockets, the protocol's messages are of variable length, so my idea is to add a field …
1
vote
6answers
126 views
C# - Queue and multithreading
I am very new to multi-threaded programming. Following is what I am trying to achieve:
Create a windows service that continuously reads the database (or somekind of message queue, please suggest …
1
vote
1answer
49 views
jQuery queue messages
Hello,
I've got a short function that should show messages on a website.
function showHint() {
$('#notify').html('message text').show('slide', {direction: 'right'}, 500);
}
And there is …
2
votes
6answers
154 views
Delphi: Threaded list of thread jobs - queueing
Hi,
I have some operations which are based on TThreads. Now I need to create the thread containing the list of jobs to be done, then firing each one as soon as the previous finishes... How should I …
0
votes
2answers
31 views
jQuery submit form after effect is complete?
Hi folks,
I'm trying to use jQuery's queue() to show() a div prior to submitting a form. However my current code just immediately submits the form before the show() effect even starts. BTW …
0
votes
1answer
52 views
clear Message Queue in C#
Hi!
C#:
i use the Message Queue to send messages from one application to the other one (this has to work only on one particular machine)
I create the queu like this on the receiver side:
…
0
votes
2answers
38 views
Actor based development - implementation questions
Hello, it's my first message here and I'm glad to join this community.
It looks like that everything is now going towards multi-thread development. Big fishes say that it won't take longer to reach …
