Error!
Success!

By tag: queue

showing:  of
0
kicks

First IronMQ impressions  (Unpublished)

IronMQ is a RESTful queue in the cloud. In this post, I share my impressions after playing with it for a while.


Kicked By:
Drop Kicked By:
0
kicks

Queue table processing in SQL Server  (Unpublished)

The scenario is you queue up records in a database table, each representing a piece of work needing to be done. You then want to have processes that periodically poll this table to pick up the next item of work from the queue and process them.


Kicked By:
Drop Kicked By:
0
kicks

A* pathfinding search in C# - Part 3  (Unpublished)

This is the last installment in the series about A* search. The C# source code implemented is available in the final part of this post. As promised in the last words of A* pathfinding search in C# - Part 2 today we’re gonna run a test case using the Romania map. This post shows a test case in which ...


Kicked By:
Drop Kicked By:
0
kicks

A* pathfinding search in C# - Part 2  (Unpublished)

This post describes step by step the methods used to implement the A* search algorithm. To illustrate the path finding problem and how it can be solved using A* I decided to use the Romania map (with the same Cities I used in Breadth and depth first search series of posts). Now I modified it adding ...


Kicked By:
Drop Kicked By:
0
kicks

A Deque Implementation for .NET  (Unpublished)

Collection class using the 'deque' data structure as it is implemented in the standard C++ library to C#. Beats System.Collections.Generic.List<> and System.Collections.Generic.LinkedList<> in nearly all categories and produces much less garbage (garbage as in garbage collection inducing...


Kicked By:
Drop Kicked By:
0
kicks

A* pathfinding search in C# - Part 1  (Unpublished)

Standing on the shoulders of giants just like Eric Lippert, this is my try to create a running sample of the code he has presented in his magnific series of posts titled Path Finding Using A* in C# 3.0. Eric wrote the base structure of the A* pathfinding algorithm but didn’t provide a complete runni...


Kicked By:
Drop Kicked By:
0
kicks

Thread Safe Circular Queue Implementation in CSharp  (Unpublished)

While completing a screen for a Software Development Engineer in Test (SDTE) position at Microsoft I had to implement a thread safe circular queue. The question asked: Implement a circular queue of integers of user-specified size using a simple array. Provide routines to initialize(), enqueue() and ...


Kicked By:
Drop Kicked By:
0
kicks

What's the Best Way to Manage a Database Queue? by JohnnyCoder  (Unpublished)

Here's a solution to setting up a shared database queue with support for abandoned items, tracking, etc.


Kicked By:
Drop Kicked By: