The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Shardcache::Client::Fast - Perl extension for the client part of libshardcache

SYNOPSIS

  use Shardcache::Client::Fast;
  @hosts = ("peer1:localhost:4444", "peer2:localhost:4445", "peer3:localhost:4446" );
  $secret = "some_secret";
  $c = Shardcache::Client::Fast->new(\@hosts, $secret, $log_level);

  # Set a new value for key "key"
  $rc = $c->set("key", "value");
  if ($rc != 0) {
    die "Error setting key 'key' : " . $c->errstr;
  }

  # Read the value back
  $v = $c->get("key");
  if (!$v && $c->errno) {
    die "Error getting value for key 'key' : " . $c->errstr;
  }

  # set the key "key2" and make it expire in 60 seconds
  $c->set("key2", "value2", 60);

  # evict "key"
  $c->evict("key");

  # remove "key2" prematurely
  $c->del("key2");

  
  # check if "peer3" is alive
  if ($c->check("peer3") != 0) {
    warn "peer3 is not responding";
  }

  # get the index of keys existing on "peer2"
  $index = $c->index("peer2");

DESCRIPTION

Perl bindings to libshardcache-client. This library is a replacement for the pure-perl Shardcache::Client allowing faster access to shardcache nodes by using libshardcache directly instead of reimplementing the protocol and handling connections on the perl side.

EXPORT

None by default.

METHODS

  • new ( @$hosts, [ $secret, $log_level ] )

REQUIRED PARAMS

@$hosts
    An arrayref of 'name:address:port' strings describing the nodes serving the sharded cache

OPTIONAL PARAMS

$secret
    A secret used to compute the signature used for internal communication.
    If not specified the string 'default' will be used 
$log_level
    The loglevel used by libshardcache internal routines.
    Note that libshardcache uses syslog levels and it initializes
    itself by evaluating the expression : "LOG_INFO + $log_level".
    So anything greater than 0 will enable debug messages (there are up to 5 debug levels);
    negative numbers will progressively inhibit info, notice, warning and error messages.
  • tcp_timeout ( $new_value )

        Set/Get the tcp timeout (in milliseconds) used for all operations on a tcp socket (such as connect(), read(), write()).
        A value of 0 means no-timeout (system-wide timeouts might still apply).
        If $new_value is negative, no new value will be set but the current value will be returned.
        If $new_value is positive it will set as new tcp timeout and the old value will be returned.
  • use_random_node ( $new_value )

        Set/Get the internal shardcache client flag which determines if using the consistent hashing to
        always query the node responsible for a given key, or select any random node among the available
        ones when executing a get/set/del/evict command.
        If $new_value is true a random node will be used, if false the node responsible for the specific
        key will be selected.
        Note that the 'stats', the 'index' and the 'migration*' commands are not affected by this flag
  • pipeline_max ( $new_value )

        Set/Get the maximum number of requests to pipeline on a single connection.
        This setting affects how many parallel connections will be used to execute a multi command
  • get ( $key )

        Get the value for $key. 
        If found in the cache it will be returned immediately, 
        if this node is responsible for $key, the underlying storage will be queried for the value,
        otherwise a request to the responsible node in the shardcache 'cloud' will be done to obtain the value
        (and the local cache will be populated)
  • get_async ( $key, $coderef, [ $priv ] )

        Get the value for $key asynchronously.
    
        This function will block and call the provided callback as soon 
        as a chunk of data is read from the node.
        The control will be returned to the caller when there is no
        more data to read or an error occurred
    
        - $coderef must be a reference to a perl SUB which will get as arguments
          the tuple : ($node, $key, $data, $status, $priv)
    
        - $status == 0 means that the operation is still in progress and $data contains the new chunk of data
    
        - $status == 1 means that the operation is complete and no further notifications will be received
    
        - $status == -1 means that an error occurred and no further notifications will be received
    
        - $priv will be the same scalar value passed to get_async() as last argument
    
        If the $coderef, called at each chunk of data being received, returns a 
        NON-TRUE value the fetch will be interrupted and the coderef won't be called
        anymore.
        Returning a TRUE value will make it go ahead until completed.
  • exists ( $key )

        Check existence of the key on the node responsible for it.
        Returns 1 if the key exists, 0 if doesn't exist, -1 on errors
  • touch ( $key )

        For loading of a key into the cache if not loaded already,
        otherwise updates the loaded-timestamp for the cached key.
    
        Returns 0 on success, -1 on errors.
  • set ( $key, $value, [ $expire ] )

        Set a new value for $key in the underlying storage.
  • add ( $key, $value, [ $expire ] )

        Set a new value for $key in the underlying storage if it doesn't exists.
        Returns 0 if successfully stored, 1 if already existsing, -1 in case of errors.
  • del ( $key )

        Remove the value associated to $key from the underlying storage (note the cache of all nodes will be evicted as well).
  • evict ( $key )

        Evict the value associated to $key from the cache (note this will not remove the value from the underlying storage).
  • stats ( [ $node ] )

        Retrieve the stats for a given node (or all nodes if none is provided as parameter).
  • index ( [ $node ] )

        Retrieve the index for a given node (or all nodes if none is provided as parameter).
  • check ( [ $node ] )

        Checks the status of a given node (or all nodes if none is provided as parameter).
  • get_multi ( @$keys )

        Get multiple keys at once. The @$keys parameter is expected to be an ARRAYREF containing the keys to retrieve.
        Returns an arrayref containing the values for the requested keys. Values are stored at the same index of the
        corresponding key in the input array. Empty or unretrieved values will be returned as undef.
    
        Note that multi-commands are not all-or-nothing, some operations may succeed, while others may fail.
  • set_multi ( %$pairs )

        Get multiple keys at once. The %$pairs parameter is expected to be an HASHREF containing the key/value pairs to set.
        Returns an hashref containing the same keys of the input hashref as keys and the status of the operation as values
        (1 if successfully set, 0 otherwise).
    
        Note that multi-commands are not all-or-nothing, some operations may succeed, while others may fail.

SEE ALSO

  • https://github.com/xant/libshardcache

  • http://xant.github.io/libshardcache/shardcache__client_8h.html

AUTHOR

xant, <xant@xant.net>

COPYRIGHT AND LICENSE

Copyright (C) 2013 by xant

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.