exs/feeds-awe-bundle

This bundle reads AWE's api to get live performers' information.

v0.0.2 2017-10-16 19:36 UTC

This package is auto-updated.

Last update: 2024-03-29 03:38:21 UTC


README

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-awe-bundle

Enable it in your application's AppKernel

<?php
// app/AppKernel.php

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

Configuration

Some configuration is available to manage the cache.

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

Usage

// Returns performer Ids' array.
$performerIds = $container
    ->get('exs_feeds_awe.feeds_reader')
    ->getLivePerformers()
;

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

$ app/console feeds:awe:refresh-live-performers --env=prod --no-debug
$ app/console feeds:cambuilder:refresh-live-performers --limit=500 --ttl=3600 --env=prod --no-debug