doctrine/mongodb-odm-tailable-cursor-bundle

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (dev-master) of this package.

dev-master 2012-05-23 01:15 UTC

This package is not auto-updated.

Last update: 2021-03-13 10:34:56 UTC


README

This is a simple command which allows you to tail a MongoDB cursor for a capped collection in a daemon like Symfony2 console command that runs forever processing new documents as they inserted to the capped collection.

The bundle consists of a single interface and a console command. The command is:

$ ./app/console doctrine:mongodb:tail-cursor <document> <finder> <processor>

The arguments are:

  • document - The name of the document class to tail.
  • finder - The method used on the repository for the document to get the cursor.
  • processor - The name of the service to use to process each document.

The processor must implement the simple ProcessorInterface:

<?php

namespace Doctrine\ODM\MongoDB\Symfony\TailableCursorBundle;

interface ProcessorInterface
{
    function process($document);
}

When you implement your own processor, register it as a service name and then you can run the command like the following:

$ ./app/console doctrine:mongodb:tail-cursor MainBundle:User findNewUsers new_user.processor