Queue


(v.) To line up. In computer science, queuing refers to lining up jobs for a computer or device. For example, if you want to print a number of documents, the operating system (or a special print spooler) queues the documents by placing them in a special area called a print buffer or print queue. The printer then pulls the documents off the queue one at a time. Another term for this is print spooling .

The order in which a system executes jobs on a queue depends on the priority system being used. Most commonly, jobs are executed in the same order that they were placed on the queue, but in some schemes certain jobs are given higher priority.

(n.) (1)A group of jobs waiting to be executed.

(2) In programming, a queue is a data structure in which elements are removed in the same order they were entered. This is often referred to as FIFO (first in, first out). In contrast, a stackis a data structure in which elements are removed in the reverse order from which they were entered. This is referred to as LIFO (last in, first out).

Read Also:

  • quiesce

    (1) To temporarily render inactive. This refers to many areas in computing such as hardware (to quiesce a device). The time taken to render the device inactive is called the quiesce time. The term quiesce is applied outside of hardware and device suspension and it can refer to a voluntary inactivation of an entire computer […]

  • quit

    To exit a program in an orderly way. Compare with abort, which exits a program in an unorderly fashion.

  • RADIUS Server

    Short for Remote Authentication Dial-In User Service, an authentication and accounting system used by many Internet Service Providers (ISPs). When you dial in to the ISP you must enter your username and password. This information is passed to a RADIUS server, which checks that the information is correct, and then authorizes access to the ISP […]

  • RAID - Redundant Array of Independent Disks

    RAID is short for redundant array of independent disks. Originally, the term RAID was defined as redundant array of inexpensive disks, but now it usually refers to a redundant array of independent disks. RAID storage uses multiple disks in order to provide fault tolerance, to improve overall performance, and to increase storage capacity in a […]

  • RAIDb

    Short for Redundant Arrays of Inexpensive Databases (Db), RAIDb is a standard for combining multiple database instances into an array of databases. RAIDb was derived from two technologies; Redundant Arrays of Inexpensive Disks (RAID) and computing clusters to provide better performance and fault tolerance than a single database would, with the benefits of a distributed […]


Disclaimer: Queue definition / meaning should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional. All content on this website is for informational purposes only.