Skip to content

Testing flags #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Nov 15, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions memcached-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@ class Memcached {

public function __construct( $persistent_id = '', $on_new_object_cb = null ) {}

public function get( $key, $cache_cb = null, &$cas_token = null ) {}
public function get( $key, $cache_cb = null, &$cas_token = null, &$udf_flags = null ) {}

public function getByKey( $server_key, $key, $cache_cb = null, &$cas_token = null ) {}
public function getByKey( $server_key, $key, $cache_cb = null, &$cas_token = null, &$udf_flags = null ) {}

public function getMulti( array $keys, &$cas_tokens = null, $flags = 0 ) {}
public function getMulti( array $keys, &$cas_tokens = null, $flags = 0, &$udf_flags = null ) {}

public function getMultiByKey( $server_key, array $keys, &$cas_tokens = null, $flags = 0 ) {}
public function getMultiByKey( $server_key, array $keys, &$cas_tokens = null, $flags = 0, &$udf_flags = null ) {}

public function getDelayed( array $keys, $with_cas = null, $value_cb = null ) {}

Expand All @@ -201,25 +201,25 @@ public function fetch( ) {}

public function fetchAll( ) {}

public function set( $key, $value, $expiration = 0 ) {}
public function set( $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function touch( $key, $expiration = 0 ) {}

public function touchbyKey( $key, $expiration = 0 ) {}

public function setByKey( $server_key, $key, $value, $expiration = 0 ) {}
public function setByKey( $server_key, $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function setMulti( array $items, $expiration = 0 ) {}
public function setMulti( array $items, $expiration = 0, $udf_flags = 0 ) {}

public function setMultiByKey( $server_key, array $items, $expiration = 0 ) {}
public function setMultiByKey( $server_key, array $items, $expiration = 0, $udf_flags = 0 ) {}

public function cas( $token, $key, $value, $expiration = 0 ) {}
public function cas( $token, $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function casByKey( $token, $server_key, $key, $value, $expiration = 0 ) {}
public function casByKey( $token, $server_key, $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function add( $key, $value, $expiration = 0 ) {}
public function add( $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function addByKey( $server_key, $key, $value, $expiration = 0 ) {}
public function addByKey( $server_key, $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function append( $key, $value ) {}

Expand All @@ -229,9 +229,9 @@ public function prepend( $key, $value ) {}

public function prependByKey( $server_key, $key, $value ) {}

public function replace( $key, $value, $expiration = 0 ) {}
public function replace( $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function replaceByKey( $server_key, $key, $value, $expiration = 0 ) {}
public function replaceByKey( $server_key, $key, $value, $expiration = 0, $udf_flags = 0 ) {}

public function delete( $key, $time = 0 ) {}

Expand Down
Loading