Skip to content

peterhartree/PHP-SimpleCache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 

Repository files navigation

PHP SimpleCache

The PHP SimpleCache Class is an easy way to cache 3rd party API calls.

Patched by @peterhartree to store the cache files on Amazon S3.

Install

Install via composer:

{
    "require": {
        "aws/aws-sdk-php": "~2.6",
        "peterhartree/php-simplecache": "~1.4"
    }
}

Run composer install then use as normal.

Usage

A basic usage example:

require 'vendor/autoload.php';

$s3_bucket_id = 'YOUR_BUCKET_ID';
$s3_access_control_list = 'CANNED_ACL'; // http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl

$s3_credentials = array(
  'credentials' => array(
    'key'    => 'YOUR_KEY',
    'secret' => 'YOUR_SECRET_KEY',
  )
);

use Aws\S3\S3Client;

// Instantiate the client.
$s3_client = S3Client::factory($s3_credentials);

$cache = new Gilbitron\Util\SimpleCache($s3_client, $s3_bucket_id, $s3_access_control_list);

$latest_tweet = $cache->get_data('tweet', 'http://search.twitter.com/search.atom?q=from:gilbitron&rpp=1');
echo $latest_tweet;

Credits

PHP SimpleCache was created by Gilbert Pellegrom from Dev7studios. Released under the MIT license.

About

A simple script for caching 3rd party API calls in PHP to Amazon S3.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%