Skip to content

CI_Cache_wincache

Mathieu Nayrolles edited this page Jan 20, 2016 · 1 revision

CI_Cache_wincache

CodeIgniter Wincache Caching Class

Read more about Wincache functions here: http://www.php.net/manual/en/ref.wincache.php

  • Class name: CI_Cache_wincache
  • Namespace:
  • Parent class: CI_Driver

Properties

$_parent

protected object $_parent

Instance of the parent class

  • Visibility: protected

$_methods

protected array $_methods = array()

List of methods in the parent class

  • Visibility: protected

$_properties

protected array $_properties = array()

List of properties in the parent class

  • Visibility: protected

$_reflections

protected array $_reflections = array()

Array of methods and properties for the parent class(es)

  • Visibility: protected
  • This property is static.

Methods

get

mixed CI_Cache_wincache::get(string $id)

Get

Look for a value in the cache. If it exists, return the data, if not, return FALSE

  • Visibility: public

Arguments

  • $id string - <p>Cache Ide</p>

save

boolean CI_Cache_wincache::save(string $id, mixed $data, integer $ttl, boolean $raw)

Cache Save

  • Visibility: public

Arguments

  • $id string - <p>Cache ID</p>
  • $data mixed - <p>Data to store</p>
  • $ttl integer - <p>Time to live (in seconds)</p>
  • $raw boolean - <p>Whether to store the raw value (unused)</p>

delete

boolean CI_Cache_wincache::delete($id)

Delete from Cache

  • Visibility: public

Arguments

  • $id mixed

increment

mixed CI_Cache_wincache::increment(string $id, integer $offset)

Increment a raw value

  • Visibility: public

Arguments

  • $id string - <p>Cache ID</p>
  • $offset integer - <p>Step/value to add</p>

decrement

mixed CI_Cache_wincache::decrement(string $id, integer $offset)

Decrement a raw value

  • Visibility: public

Arguments

  • $id string - <p>Cache ID</p>
  • $offset integer - <p>Step/value to reduce by</p>

clean

boolean CI_Cache_wincache::clean()

Clean the cache

  • Visibility: public

cache_info

mixed CI_Cache_wincache::cache_info()

Cache Info

  • Visibility: public

get_metadata

mixed CI_Cache_wincache::get_metadata($id)

Get Cache Metadata

  • Visibility: public

Arguments

  • $id mixed

is_supported

boolean CI_Cache_wincache::is_supported()

is_supported()

Check to see if WinCache is available on this system, bail if it isn't.

  • Visibility: public

decorate

void CI_Driver::decorate($parent)

Decorate

Decorates the child with the parent driver lib's methods and properties

  • Visibility: public
  • This method is defined by CI_Driver

Arguments

  • $parent mixed

__call

mixed CI_Driver::__call($method, $args)

__call magic method

Handles access to the parent driver library's methods

  • Visibility: public
  • This method is defined by CI_Driver

Arguments

  • $method mixed
  • $args mixed

__get

mixed CI_Driver::__get($var)

__get magic method

Handles reading of the parent driver library's properties

  • Visibility: public
  • This method is defined by CI_Driver

Arguments

  • $var mixed

__set

mixed CI_Driver::__set($var, $val)

__set magic method

Handles writing to the parent driver library's properties

  • Visibility: public
  • This method is defined by CI_Driver

Arguments

  • $var mixed
  • $val mixed
Clone this wiki locally