@@ -104,7 +104,7 @@ module Database.LSMTree (
104104 -- * Table Configuration #table_configuration#
105105 TableConfig (.. ),
106106 defaultTableConfig ,
107- MergePolicy (MergePolicyLazyLevelling ),
107+ MergePolicy (LazyLevelling ),
108108 SizeRatio (Four ),
109109 WriteBufferAlloc (AllocNumEntries ),
110110 BloomFilterAlloc (AllocFixed , AllocRequestFPR ),
@@ -381,7 +381,7 @@ Otherwise, the session directory is opened as an existing session.
381381
382382The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
383383
384- ['MergePolicyLazyLevelling ']:
384+ ['LazyLevelling ']:
385385 \(O(o \: T \log_T \frac{n}{B})\).
386386
387387The variable \(o\) refers to the number of open tables and cursors in the session.
@@ -497,7 +497,7 @@ Close a session.
497497
498498The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
499499
500- ['MergePolicyLazyLevelling ']:
500+ ['LazyLevelling ']:
501501 \(O(o \: T \log_T \frac{n}{B})\).
502502
503503The variable \(o\) refers to the number of open tables and cursors in the session.
657657
658658The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
659659
660- ['MergePolicyLazyLevelling ']:
660+ ['LazyLevelling ']:
661661 \(O(T \log_T \frac{n}{B})\).
662662
663663Membership tests can be performed concurrently from multiple Haskell threads.
@@ -693,7 +693,7 @@ The batch of keys corresponds in-order to the batch of results.
693693
694694The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
695695
696- ['MergePolicyLazyLevelling ']:
696+ ['LazyLevelling ']:
697697 \(O(T \log_T \frac{n}{B})\).
698698
699699The variable \(b\) refers to the length of the input vector.
@@ -793,7 +793,7 @@ FoundWithBlob (Value "Hello") (Blob "World")
793793
794794The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
795795
796- ['MergePolicyLazyLevelling ']:
796+ ['LazyLevelling ']:
797797 \(O(T \log_T \frac{n}{B})\).
798798
799799Lookups can be performed concurrently from multiple Haskell threads.
@@ -832,7 +832,7 @@ The batch of keys corresponds in-order to the batch of results.
832832
833833The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
834834
835- ['MergePolicyLazyLevelling ']:
835+ ['LazyLevelling ']:
836836 \(O(T \log_T \frac{n}{B})\).
837837
838838The variable \(b\) refers to the length of the input vector.
@@ -959,7 +959,7 @@ Found (Value "Goodbye")
959959
960960The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
961961
962- ['MergePolicyLazyLevelling ']:
962+ ['LazyLevelling ']:
963963 \(O(\log_T \frac{n}{B})\).
964964
965965Throws the following exceptions:
@@ -995,7 +995,7 @@ Variant of 'insert' for batch insertions.
995995
996996The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
997997
998- ['MergePolicyLazyLevelling ']:
998+ ['LazyLevelling ']:
999999 \(O(b \: \log_T \frac{n}{B})\).
10001000
10011001The variable \(b\) refers to the length of the input vector.
@@ -1048,7 +1048,7 @@ Found (Value "Hello Goodbye")
10481048
10491049The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
10501050
1051- ['MergePolicyLazyLevelling ']:
1051+ ['LazyLevelling ']:
10521052 \(O(\log_T \frac{n}{B})\).
10531053
10541054Throws the following exceptions:
@@ -1091,7 +1091,7 @@ Variant of 'upsert' for batch insertions.
10911091
10921092The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
10931093
1094- ['MergePolicyLazyLevelling ']:
1094+ ['LazyLevelling ']:
10951095 \(O(b \: \log_T \frac{n}{B})\).
10961096
10971097The variable \(b\) refers to the length of the input vector.
@@ -1140,7 +1140,7 @@ Found (Value "Hello")
11401140
11411141The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
11421142
1143- ['MergePolicyLazyLevelling ']:
1143+ ['LazyLevelling ']:
11441144 \(O(\log_T \frac{n}{B})\).
11451145
11461146Throws the following exceptions:
@@ -1172,7 +1172,7 @@ Variant of 'delete' for batch deletions.
11721172
11731173The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
11741174
1175- ['MergePolicyLazyLevelling ']:
1175+ ['LazyLevelling ']:
11761176 \(O(b \: \log_T \frac{n}{B})\).
11771177
11781178The variable \(b\) refers to the length of the input vector.
@@ -1217,7 +1217,7 @@ Update generalises 'insert', 'delete', and 'upsert'.
12171217
12181218The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
12191219
1220- ['MergePolicyLazyLevelling ']:
1220+ ['LazyLevelling ']:
12211221 \(O(\log_T \frac{n}{B})\).
12221222
12231223Throws the following exceptions:
@@ -1257,7 +1257,7 @@ Variant of 'update' for batch updates.
12571257
12581258The worst-case disk I\/O complexity of this operation depends on the merge policy of the table:
12591259
1260- ['MergePolicyLazyLevelling ']:
1260+ ['LazyLevelling ']:
12611261 \(O(b \: \log_T \frac{n}{B})\).
12621262
12631263The variable \(b\) refers to the length of the input vector.
0 commit comments