Skip to content

Latest commit

 

History

History
124 lines (70 loc) · 3.04 KB

File metadata and controls

124 lines (70 loc) · 3.04 KB
layout doc
title Memcache - Codeception - Documentation

Memcache

Connects to memcached using either Memcache or Memcached extension.

Performs a cleanup by flushing all values after each test run.

Status

Configuration

  • host (string, default 'localhost') - The memcached host
  • port (int, default 11211) - The memcached port

Example (unit.suite.yml)

{% highlight yaml %}

modules: - Memcache: host: 'localhost' port: 11211

{% endhighlight %}

Be sure you don't use the production server to connect.

Public Properties

  • memcache - instance of Memcache or Memcached object

Actions

clearMemcache

Flushes all Memcached data.

dontSeeInMemcached

Checks item in Memcached doesn't exist or is the same as expected.

Examples:

{% highlight php %}

dontSeeInMemcached('users_count'); // Checks a 'users_count' exists does not exist or its value is not the one provided $I->dontSeeInMemcached('users_count', 200); ?>

{% endhighlight %}

  • param $key
  • param $value

grabValueFromMemcached

Grabs value from memcached by key.

Example:

{% highlight php %}

grabValueFromMemcached('users_count'); ?>

{% endhighlight %}

  • param $key
  • return array|string

haveInMemcached

Stores an item $value with $key on the Memcached server.

  • param string $key
  • param mixed $value
  • param int $expiration

seeInMemcached

Checks item in Memcached exists and the same as expected.

Examples:

{% highlight php %}

seeInMemcached('users_count'); // Checks a 'users_count' exists and has the value 200 $I->seeInMemcached('users_count', 200); ?>

{% endhighlight %}

  • param $key
  • param $value

 

Module reference is taken from the source code. Help us to improve documentation. Edit module reference