├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── RoboFile.php ├── composer.json ├── dev ├── docker-compose.yml ├── docs-src ├── aggregating.md ├── changelog.md ├── css │ └── style.css ├── images │ └── logo.png ├── index.md ├── indexing.md ├── laravel-support.md ├── searching.md └── suggesting.md ├── docs ├── 404.html ├── aggregating │ └── index.html ├── assets │ ├── fonts │ │ ├── font-awesome.css │ │ ├── material-icons.css │ │ └── specimen │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome.woff │ │ │ ├── FontAwesome.woff2 │ │ │ ├── MaterialIcons-Regular.ttf │ │ │ ├── MaterialIcons-Regular.woff │ │ │ └── MaterialIcons-Regular.woff2 │ ├── images │ │ ├── favicon.png │ │ └── icons │ │ │ ├── bitbucket.1b09e088.svg │ │ │ ├── github.f0b8504a.svg │ │ │ └── gitlab.6dd19c00.svg │ ├── javascripts │ │ ├── application.a353778b.js │ │ ├── lunr │ │ │ ├── lunr.da.js │ │ │ ├── lunr.de.js │ │ │ ├── lunr.du.js │ │ │ ├── lunr.es.js │ │ │ ├── lunr.fi.js │ │ │ ├── lunr.fr.js │ │ │ ├── lunr.hu.js │ │ │ ├── lunr.it.js │ │ │ ├── lunr.jp.js │ │ │ ├── lunr.multi.js │ │ │ ├── lunr.no.js │ │ │ ├── lunr.pt.js │ │ │ ├── lunr.ro.js │ │ │ ├── lunr.ru.js │ │ │ ├── lunr.stemmer.support.js │ │ │ ├── lunr.sv.js │ │ │ ├── lunr.tr.js │ │ │ └── tinyseg.js │ │ └── modernizr.962652e9.js │ └── stylesheets │ │ ├── application-palette.22915126.css │ │ └── application.572ca0f0.css ├── changelog │ └── index.html ├── css │ └── style.css ├── images │ └── logo.png ├── index.html ├── indexing │ └── index.html ├── laravel-support │ └── index.html ├── search │ └── search_index.json ├── searching │ └── index.html ├── sitemap.xml ├── sitemap.xml.gz └── suggesting │ └── index.html ├── mkdocs.yml ├── phpunit.xml ├── src ├── AbstractIndex.php ├── AbstractRediSearchClientAdapter.php ├── Aggregate │ ├── AggregationResult.php │ ├── Builder.php │ ├── BuilderInterface.php │ ├── Operations │ │ ├── AbstractFieldNameOperation.php │ │ ├── Apply.php │ │ ├── Filter.php │ │ ├── GroupBy.php │ │ ├── Limit.php │ │ ├── Load.php │ │ └── SortBy.php │ └── Reducers │ │ ├── AbstractFieldNameReducer.php │ │ ├── Aliasable.php │ │ ├── Avg.php │ │ ├── Count.php │ │ ├── CountDistinct.php │ │ ├── CountDistinctApproximate.php │ │ ├── FirstValue.php │ │ ├── Max.php │ │ ├── Min.php │ │ ├── Quantile.php │ │ ├── StandardDeviation.php │ │ ├── Sum.php │ │ └── ToList.php ├── CanBecomeArrayInterface.php ├── Document │ ├── AbstractDocumentFactory.php │ ├── Document.php │ └── DocumentInterface.php ├── Exceptions │ ├── AliasDoesNotExistException.php │ ├── DocumentAlreadyInIndexException.php │ ├── FieldNotInSchemaException.php │ ├── NoFieldsInIndexException.php │ ├── OutOfRangeDocumentScoreException.php │ ├── RediSearchException.php │ ├── UnknownIndexNameException.php │ ├── UnknownIndexNameOrNameIsAnAliasItselfException.php │ ├── UnknownRediSearchCommandException.php │ └── UnsupportedRediSearchLanguageException.php ├── Fields │ ├── AbstractField.php │ ├── FieldFactory.php │ ├── FieldInterface.php │ ├── GeoField.php │ ├── GeoLocation.php │ ├── Noindex.php │ ├── NumericField.php │ ├── Sortable.php │ ├── Tag.php │ ├── TagField.php │ └── TextField.php ├── Index.php ├── IndexInterface.php ├── Language.php ├── Query │ ├── Builder.php │ ├── BuilderInterface.php │ └── SearchResult.php ├── RediSearchRedisClient.php ├── RuntimeConfiguration.php └── Suggestion.php ├── tests ├── RediSearch │ ├── Aggregate │ │ ├── AggregationResultTest.php │ │ └── BuilderTest.php │ ├── Document │ │ └── DocumentTest.php │ ├── Exceptions │ │ ├── FieldNotInSchemaExceptionTest.php │ │ ├── NoFieldsInIndexExceptionTest.php │ │ ├── RedisRawCommandExceptionTest.php │ │ └── UnknownIndexNameExceptionTest.php │ ├── Fields │ │ ├── FieldFactoryTest.php │ │ ├── GeoFieldTest.php │ │ ├── GeoLocationTest.php │ │ ├── NumericFieldTest.php │ │ └── TextFieldTest.php │ ├── IndexTest.php │ ├── Query │ │ └── BuilderTest.php │ ├── Redis │ │ └── RedisClientTest.php │ ├── RuntimeConfigurationTest.php │ └── SuggestionTest.php ├── RediSearchTestCase.php ├── Stubs │ ├── IndexWithoutFields.php │ ├── TestDocument.php │ └── TestIndex.php ├── TestTimeListener.php └── bootstrap.php └── travis-php.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/README.md -------------------------------------------------------------------------------- /RoboFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/RoboFile.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/composer.json -------------------------------------------------------------------------------- /dev: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | docker compose up -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs-src/aggregating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/aggregating.md -------------------------------------------------------------------------------- /docs-src/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/changelog.md -------------------------------------------------------------------------------- /docs-src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/css/style.css -------------------------------------------------------------------------------- /docs-src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/images/logo.png -------------------------------------------------------------------------------- /docs-src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/index.md -------------------------------------------------------------------------------- /docs-src/indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/indexing.md -------------------------------------------------------------------------------- /docs-src/laravel-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/laravel-support.md -------------------------------------------------------------------------------- /docs-src/searching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/searching.md -------------------------------------------------------------------------------- /docs-src/suggesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs-src/suggesting.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/aggregating/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/aggregating/index.html -------------------------------------------------------------------------------- /docs/assets/fonts/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/font-awesome.css -------------------------------------------------------------------------------- /docs/assets/fonts/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/material-icons.css -------------------------------------------------------------------------------- /docs/assets/fonts/specimen/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/specimen/FontAwesome.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/specimen/FontAwesome.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/specimen/FontAwesome.woff -------------------------------------------------------------------------------- /docs/assets/fonts/specimen/FontAwesome.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/specimen/FontAwesome.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/specimen/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/specimen/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/specimen/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/specimen/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /docs/assets/fonts/specimen/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/fonts/specimen/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /docs/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/assets/images/icons/bitbucket.1b09e088.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/images/icons/bitbucket.1b09e088.svg -------------------------------------------------------------------------------- /docs/assets/images/icons/github.f0b8504a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/images/icons/github.f0b8504a.svg -------------------------------------------------------------------------------- /docs/assets/images/icons/gitlab.6dd19c00.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/images/icons/gitlab.6dd19c00.svg -------------------------------------------------------------------------------- /docs/assets/javascripts/application.a353778b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/application.a353778b.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.da.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.de.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.du.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.du.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.es.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.fi.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.fr.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.hu.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.it.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.jp.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.multi.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.no.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.pt.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.ro.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.ru.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.stemmer.support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.stemmer.support.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.sv.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/lunr.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/lunr.tr.js -------------------------------------------------------------------------------- /docs/assets/javascripts/lunr/tinyseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/lunr/tinyseg.js -------------------------------------------------------------------------------- /docs/assets/javascripts/modernizr.962652e9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/javascripts/modernizr.962652e9.js -------------------------------------------------------------------------------- /docs/assets/stylesheets/application-palette.22915126.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/stylesheets/application-palette.22915126.css -------------------------------------------------------------------------------- /docs/assets/stylesheets/application.572ca0f0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/assets/stylesheets/application.572ca0f0.css -------------------------------------------------------------------------------- /docs/changelog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/changelog/index.html -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/indexing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/indexing/index.html -------------------------------------------------------------------------------- /docs/laravel-support/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/laravel-support/index.html -------------------------------------------------------------------------------- /docs/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/search/search_index.json -------------------------------------------------------------------------------- /docs/searching/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/searching/index.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/sitemap.xml.gz -------------------------------------------------------------------------------- /docs/suggesting/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/docs/suggesting/index.html -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AbstractIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/AbstractIndex.php -------------------------------------------------------------------------------- /src/AbstractRediSearchClientAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/AbstractRediSearchClientAdapter.php -------------------------------------------------------------------------------- /src/Aggregate/AggregationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/AggregationResult.php -------------------------------------------------------------------------------- /src/Aggregate/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Builder.php -------------------------------------------------------------------------------- /src/Aggregate/BuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/BuilderInterface.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/AbstractFieldNameOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/AbstractFieldNameOperation.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/Apply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/Apply.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/Filter.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/GroupBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/GroupBy.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/Limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/Limit.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/Load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/Load.php -------------------------------------------------------------------------------- /src/Aggregate/Operations/SortBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Operations/SortBy.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/AbstractFieldNameReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/AbstractFieldNameReducer.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Aliasable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Aliasable.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Avg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Avg.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Count.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/CountDistinct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/CountDistinct.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/CountDistinctApproximate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/CountDistinctApproximate.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/FirstValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/FirstValue.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Max.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Max.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Min.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Min.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Quantile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Quantile.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/StandardDeviation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/StandardDeviation.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/Sum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/Sum.php -------------------------------------------------------------------------------- /src/Aggregate/Reducers/ToList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Aggregate/Reducers/ToList.php -------------------------------------------------------------------------------- /src/CanBecomeArrayInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/CanBecomeArrayInterface.php -------------------------------------------------------------------------------- /src/Document/AbstractDocumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Document/AbstractDocumentFactory.php -------------------------------------------------------------------------------- /src/Document/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Document/Document.php -------------------------------------------------------------------------------- /src/Document/DocumentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Document/DocumentInterface.php -------------------------------------------------------------------------------- /src/Exceptions/AliasDoesNotExistException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/AliasDoesNotExistException.php -------------------------------------------------------------------------------- /src/Exceptions/DocumentAlreadyInIndexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/DocumentAlreadyInIndexException.php -------------------------------------------------------------------------------- /src/Exceptions/FieldNotInSchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/FieldNotInSchemaException.php -------------------------------------------------------------------------------- /src/Exceptions/NoFieldsInIndexException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/NoFieldsInIndexException.php -------------------------------------------------------------------------------- /src/Exceptions/OutOfRangeDocumentScoreException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/OutOfRangeDocumentScoreException.php -------------------------------------------------------------------------------- /src/Exceptions/RediSearchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/RediSearchException.php -------------------------------------------------------------------------------- /src/Exceptions/UnknownIndexNameException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/UnknownIndexNameException.php -------------------------------------------------------------------------------- /src/Exceptions/UnknownIndexNameOrNameIsAnAliasItselfException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/UnknownIndexNameOrNameIsAnAliasItselfException.php -------------------------------------------------------------------------------- /src/Exceptions/UnknownRediSearchCommandException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/UnknownRediSearchCommandException.php -------------------------------------------------------------------------------- /src/Exceptions/UnsupportedRediSearchLanguageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Exceptions/UnsupportedRediSearchLanguageException.php -------------------------------------------------------------------------------- /src/Fields/AbstractField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/AbstractField.php -------------------------------------------------------------------------------- /src/Fields/FieldFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/FieldFactory.php -------------------------------------------------------------------------------- /src/Fields/FieldInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/FieldInterface.php -------------------------------------------------------------------------------- /src/Fields/GeoField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/GeoField.php -------------------------------------------------------------------------------- /src/Fields/GeoLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/GeoLocation.php -------------------------------------------------------------------------------- /src/Fields/Noindex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/Noindex.php -------------------------------------------------------------------------------- /src/Fields/NumericField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/NumericField.php -------------------------------------------------------------------------------- /src/Fields/Sortable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/Sortable.php -------------------------------------------------------------------------------- /src/Fields/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/Tag.php -------------------------------------------------------------------------------- /src/Fields/TagField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/TagField.php -------------------------------------------------------------------------------- /src/Fields/TextField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Fields/TextField.php -------------------------------------------------------------------------------- /src/Index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Index.php -------------------------------------------------------------------------------- /src/IndexInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/IndexInterface.php -------------------------------------------------------------------------------- /src/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Language.php -------------------------------------------------------------------------------- /src/Query/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Query/Builder.php -------------------------------------------------------------------------------- /src/Query/BuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Query/BuilderInterface.php -------------------------------------------------------------------------------- /src/Query/SearchResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Query/SearchResult.php -------------------------------------------------------------------------------- /src/RediSearchRedisClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/RediSearchRedisClient.php -------------------------------------------------------------------------------- /src/RuntimeConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/RuntimeConfiguration.php -------------------------------------------------------------------------------- /src/Suggestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/src/Suggestion.php -------------------------------------------------------------------------------- /tests/RediSearch/Aggregate/AggregationResultTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Aggregate/AggregationResultTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Aggregate/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Aggregate/BuilderTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Document/DocumentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Document/DocumentTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Exceptions/FieldNotInSchemaExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Exceptions/FieldNotInSchemaExceptionTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Exceptions/NoFieldsInIndexExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Exceptions/NoFieldsInIndexExceptionTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Exceptions/RedisRawCommandExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Exceptions/RedisRawCommandExceptionTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Exceptions/UnknownIndexNameExceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Exceptions/UnknownIndexNameExceptionTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Fields/FieldFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Fields/FieldFactoryTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Fields/GeoFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Fields/GeoFieldTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Fields/GeoLocationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Fields/GeoLocationTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Fields/NumericFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Fields/NumericFieldTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Fields/TextFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Fields/TextFieldTest.php -------------------------------------------------------------------------------- /tests/RediSearch/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/IndexTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Query/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Query/BuilderTest.php -------------------------------------------------------------------------------- /tests/RediSearch/Redis/RedisClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/Redis/RedisClientTest.php -------------------------------------------------------------------------------- /tests/RediSearch/RuntimeConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/RuntimeConfigurationTest.php -------------------------------------------------------------------------------- /tests/RediSearch/SuggestionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearch/SuggestionTest.php -------------------------------------------------------------------------------- /tests/RediSearchTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/RediSearchTestCase.php -------------------------------------------------------------------------------- /tests/Stubs/IndexWithoutFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/Stubs/IndexWithoutFields.php -------------------------------------------------------------------------------- /tests/Stubs/TestDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/Stubs/TestDocument.php -------------------------------------------------------------------------------- /tests/Stubs/TestIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/Stubs/TestIndex.php -------------------------------------------------------------------------------- /tests/TestTimeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethanhann/redisearch-php/HEAD/tests/TestTimeListener.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |