techfromsage / tripod-php

Object Graph Mapper for managing RDF data in Mongo
MIT License
29 stars 4 forks source link

Implement other backends for tlog and queues #7

Open scaleupcto opened 10 years ago

scaleupcto commented 10 years ago

Using Mongo for the tlog and queues is a PITA. The problem is Mongo never recovers filesize, the transaction log is continually growing and shrinking. Eventually it fills the disk even though the document count in the queue is low, and one prunes their tlog...

Instead, implement Doctrine for the tlog (you can choose your backend in config then, like postgres) and implement resque workers for queue (backed by redis)

scaleupcto commented 10 years ago

Working on doctrine here: https://github.com/talis/tripod-php/pull/6

scaleupcto commented 9 years ago

We're working on the resque workers here, here and here.