Sha256: c0ab1d9719c142ac7475e2667ac983ef40f08b853785b920a0e6edf5e0d18c4c

Contents?: true

Size: 217 Bytes

Versions: 7

Compression:

Stored size: 217 Bytes

Contents

<?php

namespace Predis\Commands;

class HashSetPreserve extends Command {
    public function getId() {
        return 'HSETNX';
    }

    public function parseResponse($data) {
        return (bool) $data;
    }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
appstats-0.25.1 doc/benchmarks/Predis/Commands/HashSetPreserve.php
appstats-0.25.0 doc/benchmarks/Predis/Commands/HashSetPreserve.php
appstats-0.24.0 doc/benchmarks/Predis/Commands/HashSetPreserve.php
appstats-0.23.5 doc/benchmarks/Predis/Commands/HashSetPreserve.php
appstats-0.23.4 doc/benchmarks/Predis/Commands/HashSetPreserve.php
appstats-0.23.3 doc/benchmarks/Predis/Commands/HashSetPreserve.php
appstats-0.23.2 doc/benchmarks/Predis/Commands/HashSetPreserve.php