aboutsummaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
authorTerry Wang <tytytyww@google.com>2023-05-20 06:04:55 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-05-20 06:04:55 +0000
commita7115361d8ca89ff4f94fac6d0ef40b7d11056cb (patch)
tree5db4c3cafff742811e135fff1a19f6ebfeb89a74 /proto
parentc06cd1c2390b612d1839eae8564813e056055170 (diff)
parentb412fe2c0ac182a36528424e56591b0840b97ac6 (diff)
downloadicing-a7115361d8ca89ff4f94fac6d0ef40b7d11056cb.tar.gz
Merge remote-tracking branch 'goog/androidx-platform-dev' into udc-dev am: 5d49250d7a am: b412fe2c0a
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/icing/+/23356197 Change-Id: I58beaf71cf34c22d5f0ee994d2661d3b03849fb9 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'proto')
-rw-r--r--proto/icing/proto/initialize.proto10
1 files changed, 9 insertions, 1 deletions
diff --git a/proto/icing/proto/initialize.proto b/proto/icing/proto/initialize.proto
index 18884c6..d4b1aee 100644
--- a/proto/icing/proto/initialize.proto
+++ b/proto/icing/proto/initialize.proto
@@ -23,7 +23,7 @@ option java_package = "com.google.android.icing.proto";
option java_multiple_files = true;
option objc_class_prefix = "ICNG";
-// Next tag: 9
+// Next tag: 11
message IcingSearchEngineOptions {
// Directory to persist files for Icing. Required.
// If Icing was previously initialized with this directory, it will reload
@@ -96,6 +96,14 @@ message IcingSearchEngineOptions {
// The default value is false.
optional bool allow_circular_schema_definitions = 8;
+ // Whether memory map max possible file size for FileBackedVector before
+ // growing the actual file size.
+ optional bool pre_mapping_fbv = 9;
+
+ // Whether use persistent hash map as the key mapper (if false, then fall back
+ // to dynamic trie key mapper).
+ optional bool use_persistent_hash_map = 10;
+
reserved 2;
}