File tree 1 file changed +0
-8
lines changed 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -468,14 +468,6 @@ pub static DOCUMENT_RETENTION_MAX_SCANNED_DOCUMENTS: LazyLock<usize> =
468
468
pub static SEARCH_INDEX_SIZE_SOFT_LIMIT : LazyLock < usize > =
469
469
LazyLock :: new ( || env_config ( "SEARCH_INDEX_SIZE_SOFT_LIMIT" , 10 * ( 1 << 20 ) ) ) ; // 10 MiB
470
470
471
- /// Size at which a v1 single segment text search index will be queued for
472
- /// snapshotting.
473
- ///
474
- /// We use a larger value here because building single segment text search
475
- /// indexes is exponential, so building indexes infrequently reduces the overall
476
- /// time spent building the index.
477
- pub static TEXT_SEARCH_V1_INDEX_SIZE_SOFT_LIMIT : LazyLock < usize > =
478
- LazyLock :: new ( || env_config ( "SEARCH_INDEX_SIZE_SOFT_LIMIT" , 50 * ( 1 << 20 ) ) ) ; // 50 MiB
479
471
/// Configures the search index worker's rate limit on pages processed per
480
472
/// second.
481
473
pub static SEARCH_INDEX_WORKER_PAGES_PER_SECOND : LazyLock < NonZeroU32 > = LazyLock :: new ( || {
You can’t perform that action at this time.
0 commit comments