Skip to content

ExSituMarketing/EXS-FeedsCambuilderBundle

Repository files navigation

EXS-FeedsCambuilderBundle

Build Status

Installation

This bundle uses PHP's native Memcached objects.

Make sure the memcached module is enabled in your PHP's installation.

Require the bundle using composer

$ composer require exs/feeds-cambuilder-bundle

Enable the bundle in AppKernel

<?php
// app/AppKernel.php

class AppKernel extends Kernel
{
    // ...
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new EXS\FeedsCambuilderBundle\EXSFeedsCambuilderBundle(),
        );
    }
}

Configuration

Some configuration is available to manage the cache.

# Default values
exs_feeds_cambuilder:
    cache_ttl: 300
    memcached_host: 'localhost'
    memcached_port: 11211

Usage

// Returns 100 performer Ids by default.
$performerIds = $container
    ->get('exs_feeds_cambuilder.feeds_reader')
    ->getLivePerformers()
;

// Can specify the number of performers to return
$performerIds = $container
    ->get('exs_feeds_cambuilder.feeds_reader')
    ->getLivePerformers(20)
;

A command is also available if you want to force refresh the memcached record.

$ app/console feeds:cambuilder:refresh-live-performers --env=prod --no-debug

// Can specify number of performers and cache lifetime
$ app/console feeds:cambuilder:refresh-live-performers --limit=500 --ttl=3600 --env=prod --no-debug

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages