Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Supporting setting a default DIALECT for search commands #147

Merged
merged 16 commits into from
Jun 14, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace NRedisStack.RedisStackCommands
{
public static class ModulPrefixes
public static class ModulePrefixes
{
public static BloomCommands BF(this IDatabase db) => new BloomCommands(db);

Expand All @@ -16,7 +16,7 @@ public static class ModulPrefixes

public static TdigestCommands TDIGEST(this IDatabase db) => new TdigestCommands(db);

public static SearchCommands FT(this IDatabase db) => new SearchCommands(db);
public static SearchCommands FT(this IDatabase db, int? searchDialect = null) => new SearchCommands(db, searchDialect);

public static JsonCommands JSON(this IDatabase db) => new JsonCommands(db);

Expand Down
Loading