Skip to content

ChicagoBoss/tiny_pq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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.