[sqlalchemy] Copying Data base from disk to memory, working from memory and backing up to disk

2011-12-18 Thread rivka
For the sake of speed - I would like to work with my database in memory (disk access is a killer). So - I would like to load my database from disk to memory - without going through a query.all() and then - while working from memory - occasionally commit to the disk (or - when executing a commit -

Re: [sqlalchemy] Copying Data base from disk to memory, working from memory and backing up to disk

2011-12-18 Thread Michael Bayer
On Dec 18, 2011, at 1:56 PM, rivka wrote: For the sake of speed - I would like to work with my database in memory (disk access is a killer). So - I would like to load my database from disk to memory - without going through a query.all() and then - while working from memory - occasionally