This is an automated email from the ASF dual-hosted git repository.
bchapuis pushed a change to branch 681-handle-the-out-of-memory-errors
in repository https://gitbox.apache.org/repos/asf/incubator-baremaps.git
from 23e45b63 Geocoder: scoring by population, parsing query text support
AND,OR operators (#712)
new 2a9f1de4 Remove unused collections
new 36ba04ae Add jagged data structure
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../baremaps/benchmarks/DataMapBenchmark.java | 26 ++-
.../apache/baremaps/collection/JaggedDataMap.java | 179 +++++++++++++++++++++
.../collection/MonotonicFixedSizeDataMap.java | 157 ------------------
.../collection/MonotonicPairedDataMap.java | 145 -----------------
.../java/org/apache/baremaps/utils/ArrayUtils.java | 64 ++++++++
.../apache/baremaps/collection/DataMapTest.java | 10 +-
6 files changed, 256 insertions(+), 325 deletions(-)
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/collection/JaggedDataMap.java
delete mode 100644
baremaps-core/src/main/java/org/apache/baremaps/collection/MonotonicFixedSizeDataMap.java
delete mode 100644
baremaps-core/src/main/java/org/apache/baremaps/collection/MonotonicPairedDataMap.java
create mode 100644
baremaps-core/src/main/java/org/apache/baremaps/utils/ArrayUtils.java