8000 Tags · tarantool-php/client · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: tarantool-php/client

Tags

v0.10.1

Toggle v0.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add tarantool v3.x to the test matrix (#98)

v0.10.0

Toggle v0.10.0's commit message
Update test matrix

v0.9.0

Toggle v0.9.0's commit message
Set alias version to 0.9.x-dev

v0.8.1

Toggle v0.8.1's commit message
Force closing a persistent connection via StreamConnection::close()

This is necessary in cases of "out-of-sync" errors or when re-authentication
is required. How to test/reproduce:

// test_auth.php
<?php

// Run php -S localhost:8000 test_auth.php,
// then open the http://localhost:8000/?close=0 page
// and then http://localhost:8000/?close=1
// (authentication must be initiated for both requests)

declare(strict_types=1);

use Tarantool\Client\Client;
use Tarantool\Client\Middleware\AuthenticationMiddleware;

require __DIR__.'/vendor/autoload.php';

$client = Client::fromDsn('tcp://localhost:3301?persistent=true');
$client = $client->withMiddleware(new AuthenticationMiddleware('guest'));

if (isset($_REQUEST['close']) && $_REQUEST['close']) {
    $client->getHandler()->getConnection()->close();
}

$client->ping();

v0.8.0

Toggle v0.8.0's commit message
Update header comment

v0.7.1

Toggle v0.7.1's commit message
Do not rely on the "ext-ctype" dev dependency

v0.7.0

Toggle v0.7.0's commit message
Fix PhpUnitCompat to work on PHPUnit 8

v0.6.0

Toggle v0.6.0's commit message
Add a reference to benchmarks in the README.md

v0.5.2

Toggle v0.5.2's commit message
Fix typo in README.md

v0.5.1

Toggle v0.5.1's commit message
Add Criteria::[and]iteratorType

0