benoitc/offset

replace channel implementation by an implementation based on mmap

Opened this issue · 0 comments

The current implementation of the channel doesn't work over multiple processes. Rather than using deque, it should use mmap to store the data and pass them across processes and threads.

TODO:

  • CREATE A WORKING cffi implementation of mmap working on unixes and windows
  • Replace the deque call by a bounding queue implementation over mmap