mirror of
https://github.com/predis/predis.git
synced 2026-09-24 01:02:19 +00:00
Added Redis stack support (JSON, Search, TimeSeries, Bloom) (#1253)
This commit is contained in:
committed by
GitHub
parent
f9b755ece9
commit
971e47672d
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Predis package.
|
||||
*
|
||||
* (c) 2009-2020 Daniele Alessandri
|
||||
* (c) 2021-2023 Till Krüss
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Predis\Command\Argument\Search\SchemaFields;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class VectorFieldTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function testReturnsCorrectFieldArgumentsArray(): void
|
||||
{
|
||||
$this->assertSame(
|
||||
['field_name', 'AS', 'field', 'VECTOR', 'FLAT', 2, 'attribute_name', 'attribute_value'],
|
||||
(new VectorField('field_name', 'FLAT', ['attribute_name', 'attribute_value'], 'field'))->toArray());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user