Skip to content

ExSituMarketing/EXS-FeedsAWEBundle

Repository files navigation

EXS-FeedsAWEBundle

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages