Skip to content

ChicagoBoss/tiny_pq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Oct 31, 2018
5f13986 · Oct 31, 2018

History

21 Commits
Oct 31, 2018
Oct 31, 2018
Oct 31, 2018
Oct 31, 2018
Oct 31, 2018
Jan 16, 2015
Oct 31, 2018

Repository files navigation

tiny_pq : A priority queue based on gb_trees

Build Status

tiny_pq stores values associated with a priority, and provides functions for purging low-priority items efficiently. Internally, tiny_pq uses gb_trees, so you are welcome to use any gb_trees functions as well. tiny_pq is ideal for services with some notion of expiration, e.g. sessions, caches, message queues, etc.