Top "Fifo" questions

Any structure in which the First object In is the First object Out.

Reading a file in real-time using Node.js

I need to work out the best way to read data that is being written to a file, using node.…

javascript node.js real-time fifo unix-socket
FIFO serial queue using GCD

I am trying to create a (network) synchronized array for the company I work for. While the networking part works …

objective-c objective-c-blocks grand-central-dispatch fifo
Adding opencv processing to gstreamer application

I'm trying to do the following: receive video stream using gstreamer and process it with opencv. I've found few solutions, …

c++ c opencv gstreamer fifo
How implementation of java.util.queue uses LIFO?

In Java doc: [...] Among the exceptions are priority queues, which order elements according to a supplied comparator, or the elements' …

java collections queue fifo
FIFO behavior for Array.pop in javascript?

I want an Array method similar to Array.pop() that exhibits First In First Out behavior, instead of the native …

javascript arrays fifo
Write and read from a fifo from two different script

I have two bash script. One script write in a fifo. The second one read from the fifo, but AFTER …

bash fifo writer
FIFO Implementation in Inventory using SQL

This is basically an inventory project which tracks the "Stock In" and "Stock Out" of items through Purchase and sales …

sql sql-server fifo
How to read named FIFO non-blockingly?

I create a FIFO, and periodically open it in read-only and non-blockingly mode from a.py: os.mkfifo(cs_cmd_…

python nonblocking fifo
LRU vs FIFO vs Random

When there is a page fault or a cache miss we can use either the Least Recently Used (LRU), First …

algorithm hardware fifo lru
Implementing a FIFO queue in C

For an embedded application, I am trying to implement a first-in, first-out (FIFO) queue of structs using ANSI C. The …

c struct fifo c89