Re: In-place memory manager, mmap (was: Fastest way to store ints and floats on disk)

2008-08-24 Thread Kris Kennaway
castironpi wrote: Hi, I've got an in-place memory manager that uses a disk-backed memory- mapped buffer. Among its possibilities are: storing variable-length strings and structures for persistence and interprocess communication with mmap. It allocates segments of a generic buffer by length

Re: In-place memory manager, mmap (was: Fastest way to store ints and floats on disk)

2008-08-24 Thread castironpi
On Aug 24, 9:52 am, Kris Kennaway [EMAIL PROTECTED] wrote: castironpi wrote: Hi, I've got an in-place memory manager that uses a disk-backed memory- mapped buffer.  Among its possibilities are: storing variable-length strings and structures for persistence and interprocess communication

Re: In-place memory manager, mmap (was: Fastest way to store ints and floats on disk)

2008-08-24 Thread Mohamed Yousef
source-forge places no limits and is a very good place (specific project site / releases / usage counters) -- http://mail.python.org/mailman/listinfo/python-list

Re: In-place memory manager, mmap

2008-08-24 Thread Kris Kennaway
castironpi wrote: On Aug 24, 9:52 am, Kris Kennaway [EMAIL PROTECTED] wrote: castironpi wrote: Hi, I've got an in-place memory manager that uses a disk-backed memory- mapped buffer. Among its possibilities are: storing variable-length strings and structures for persistence and interprocess

Re: In-place memory manager, mmap

2008-08-24 Thread castironpi
On Aug 24, 12:19 pm, Kris Kennaway [EMAIL PROTECTED] wrote: castironpi wrote: On Aug 24, 9:52 am, Kris Kennaway [EMAIL PROTECTED] wrote: castironpi wrote: Hi, I've got an in-place memory manager that uses a disk-backed memory- mapped buffer.  Among its possibilities are: storing

In-place memory manager, mmap (was: Fastest way to store ints and floats on disk)

2008-08-22 Thread castironpi
Hi, I've got an in-place memory manager that uses a disk-backed memory- mapped buffer. Among its possibilities are: storing variable-length strings and structures for persistence and interprocess communication with mmap. It allocates segments of a generic buffer by length and returns an offset