Uses of Class
redis.clients.jedis.search.FTCreateParams
Packages that use FTCreateParams
Package
Description
This package contains the classes and interfaces related to RediSearch module.
-
Uses of FTCreateParams in redis.clients.jedis
Methods in redis.clients.jedis with parameters of type FTCreateParamsModifier and TypeMethodDescriptionfinal CommandObject<String> CommandObjects.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) MultiNodePipelineBase.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) Pipeline.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) TransactionBase.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) UnifiedJedis.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) -
Uses of FTCreateParams in redis.clients.jedis.search
Methods in redis.clients.jedis.search that return FTCreateParamsModifier and TypeMethodDescriptionThis method can be chained to add multiple prefixes.static FTCreateParamsFTCreateParams.createParams()A filter expression with the full RediSearch aggregation expression language.Indicates the default language for documents in the index.FTCreateParams.languageField(String languageAttribute) Document attribute set as the document language.FTCreateParams.maxTextFields()Forces RediSearch to encode indexes as if there were more than 32 text attributes.FTCreateParams.noFields()Does not store attribute bits for each term.FTCreateParams.noFreqs()Avoids saving the term frequencies in the index.FTCreateParams.noHighlights()FTCreateParams.noHL()Conserves storage space and memory by disabling highlighting support.FTCreateParams.noOffsets()Does not store term offsets for documents.FTCreateParams.noStopwords()The index does not have stopwords, not even the default ones.FTCreateParams.on(IndexDataType dataType) Currently supports HASH (default) and JSON.Tells the index which keys it should index.FTCreateParams.score(double defaultScore) Default score for documents in the index.FTCreateParams.scoreField(String scoreField) Document attribute that you use as the document rank based on the user ranking.FTCreateParams.skipInitialScan()Does not scan and index.Sets the index with a custom stopword list, to be ignored during indexing and search time.FTCreateParams.temporary(long seconds) Creates a lightweight temporary index that expires after a specified period of inactivity.Methods in redis.clients.jedis.search with parameters of type FTCreateParamsModifier and TypeMethodDescriptionRediSearchCommands.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) default StringRediSearchCommands.ftCreate(String indexName, FTCreateParams createParams, SchemaField... schemaFields) RediSearchPipelineCommands.ftCreate(String indexName, FTCreateParams createParams, Iterable<SchemaField> schemaFields) RediSearchPipelineCommands.ftCreate(String indexName, FTCreateParams createParams, SchemaField... schemaFields)