Queue table

A queue table is jargon. It is used to describe a technique or method for storing a list of jobs or items to be addressed. The idea is that these things have been placed in a queue and will be handled at a later time.

The basic idea is to create a table that stores the information needed to attend to the item at hand.

This makes for more efficient processing scripts or calculations as those only need the id of the item to retrieve all its info instead of passing all the information using a variable, JSON or other method.

A queue is also a formal data structure used often for modeling. (I use queues often in micro-services.)

Modeling runways at airports, for example. Planes go into a queue with a priority, etc.

Modeling people standing in line using, well, queuing theory. Hello Poisson and Exponential probability distributions! :slight_smile:

2 Likes