Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs-site/content/26.0/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--db-compaction-interval` | false | Frequency of automatic on-disk [database compaction](./cluster-operations.md#compacting-the-on-disk-database). Default: `604,800` (7 days)<br><br> If you do frequent collection drops and recreates, you want to considering setting this to say 24 hours. |
| `--skip-writes` | false | Starts Typesense in a mode that does not read writes from the Raft log. This is useful when the server has crashed due to some recent bad writes that you want to skip over temporarily. |

### Search

| Parameter | Required | Description |
|------------------------|----------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |

## Using a Configuration File

Expand Down
1 change: 1 addition & 0 deletions docs-site/content/27.0/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--skip-writes` | false | Starts Typesense in a mode that does not read writes from the Raft log. This is useful when the server has crashed due to some recent bad writes that you want to skip over temporarily. |
| `--filter-by-max-ops` | false | Maximum number of operators permitted in `filter_by` clause. Default: `100` |
| `--max-per-page` | false | Max number of hits permitted per page. Default: `250` |
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |


## Using a Configuration File
Expand Down
1 change: 1 addition & 0 deletions docs-site/content/27.1/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--skip-writes` | false | Starts Typesense in a mode that does not read writes from the Raft log. This is useful when the server has crashed due to some recent bad writes that you want to skip over temporarily. |
| `--filter-by-max-ops` | false | Maximum number of operators permitted in `filter_by` clause. Default: `100` |
| `--max-per-page` | false | Max number of hits permitted per page. Default: `250` |
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |


## Using a Configuration File
Expand Down
1 change: 1 addition & 0 deletions docs-site/content/28.0/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--skip-writes` | false | Starts Typesense in a mode that does not read writes from the Raft log. This is useful when the server has crashed due to some recent bad writes that you want to skip over temporarily. |
| `--filter-by-max-ops` | false | Maximum number of operators permitted in `filter_by` clause. Default: `100` |
| `--max-per-page` | false | Max number of hits permitted per page. Default: `250` |
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |


## Using a Configuration File
Expand Down
1 change: 1 addition & 0 deletions docs-site/content/29.0/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--filter-by-max-ops` | false | Maximum number of operators permitted in `filter_by` clause. Default: `100` |
| `--max-per-page` | false | Max number of hits permitted per page. Default: `250` |
| `--max-group-limit` | false | Max value of `group_limit` permitted when using `group_by`. Default: `99` |
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |

### On-Disk DB Fine Tuning

Expand Down
1 change: 1 addition & 0 deletions docs-site/content/30.0/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--filter-by-max-ops` | false | Maximum number of operators permitted in `filter_by` clause. Default: `100` |
| `--max-per-page` | false | Max number of hits permitted per page. Default: `250` |
| `--max-group-limit` | false | Max value of `group_limit` permitted when using `group_by`. Default: `99` |
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |

### On-Disk DB Fine Tuning

Expand Down
1 change: 1 addition & 0 deletions docs-site/content/30.1/api/server-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Command line arguments can be passed to the server as `--parameter=value`.
| `--filter-by-max-ops` | false | Maximum number of operators permitted in `filter_by` clause. Default: `100` |
| `--max-per-page` | false | Max number of hits permitted per page. Default: `250` |
| `--max-group-limit` | false | Max value of `group_limit` permitted when using `group_by`. Default: `99` |
| `--enable-lazy-filter` | false | Sets the server-wide default for lazy evaluation of filter clauses. When enabled, filter clauses are evaluated incrementally during search instead of upfront. Default: `false`. <br><br>**NOTE**: We recommend setting `enable_lazy_filter` as a [search parameter](./search.md#search-parameters) on a per-query basis instead of enabling it server-wide, since it is only beneficial for specific query patterns (e.g. filtering on large value sets where the query tokens match very few documents). |

### On-Disk DB Fine Tuning

Expand Down