summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Updates for dynamic rate limitingnew-concurrencyDouglas Rumbaugh7 days1-0/+5
|
* Merge branch 'new-concurrency' of ↵Douglas Rumbaugh2025-09-171-0/+5
|\ | | | | | | github.com:dbrumbaugh/dynamic-extension-working into new-concurrency
| * Per record cost estimation progressDouglas B. Rumbaugh2025-08-141-0/+5
| |
* | Last updates for dissertationDouglas Rumbaugh2025-09-171-0/+5
| |
* | updatesDouglas Rumbaugh2025-06-021-0/+15
|/
* Merge branch 'new-concurrency' of ↵Douglas Rumbaugh2025-06-021-0/+5
|\ | | | | | | github.com:dbrumbaugh/dynamic-extension-working into new-concurrency
| * Merge branch 'new-concurrency' of ↵Douglas Rumbaugh2025-05-291-1/+5
| |\ | | | | | | | | | github.com:dbrumbaugh/dynamic-extension-working into new-concurrency
| * | Stall rate benchmarkingDouglas Rumbaugh2025-05-291-0/+6
| | |
* | | KNN sweepDouglas Rumbaugh2025-06-021-0/+4
| |/ |/|
* | Added selectivity sweep benchmarkDouglas Rumbaugh2025-05-251-0/+5
|/
* Updates for tail latency stall testingDouglas Rumbaugh2025-05-251-0/+5
|
* Stats tweaks and KNN benchmarkDouglas Rumbaugh2025-04-301-0/+5
|
* Missed cmakelists in last commitDouglas Rumbaugh2025-04-091-0/+11
|
* Implemented the legacy policies and fixed a few bugsDouglas Rumbaugh2025-04-071-1/+1
|
* working commit (temporary progress, doesn't build)Douglas Rumbaugh2025-04-051-1/+1
|
* Query Preemption: still has one or two bugs, but mostly worksDouglas Rumbaugh2025-02-241-0/+6
|
* Average version of mixed-workload benchDouglas Rumbaugh2025-02-171-0/+6
|
* Multi-threaded mixed workload benchmarkDouglas Rumbaugh2025-02-171-0/+6
|
* BTree insertion latency benchmarksDouglas Rumbaugh2025-02-171-0/+5
|
* Parallel background reconstructions appear to be working!Douglas Rumbaugh2025-02-141-1/+1
|
* Progress: began adding parallel merging and locking of levelsDouglas Rumbaugh2025-02-111-1/+1
|
* Migrated remaining tail latency benchmarks to new interfaceDouglas Rumbaugh2025-02-101-9/+9
|
* CMakeLists updateDouglas Rumbaugh2025-02-061-0/+1
|
* Background compaction stuffDouglas Rumbaugh2025-02-061-11/+16
|
* More updatesDouglas Rumbaugh2025-01-311-4/+4
|
* progressDouglas Rumbaugh2025-01-271-38/+38
|
* ProgressDouglas Rumbaugh2025-01-171-2/+2
|
* Additional layout policies + more flexibility in buffer flushingDouglas Rumbaugh2025-01-161-2/+7
|
* Tail latency parm sweepDouglas Rumbaugh2025-01-081-1/+7
|
* Fixed the reversed scale factor and buffer size on benchmarksDouglas B. Rumbaugh2024-12-231-1/+1
|
* Began migrating benchmarks over to new interfaceDouglas Rumbaugh2024-12-231-19/+19
|
* Continued developmentDouglas B. Rumbaugh2024-12-221-7/+2
|
* Adjusted query result interfacesHEADmasterDouglas B. Rumbaugh2024-12-061-18/+16
| | | | | | | Now, the vector<> is part of the user-defined type, not required by the framework. This should allow for more flexibility in either using alternative containers, or for more sensible implementations of queries with single value results (like range count).
* Interface update (#5)Douglas B. Rumbaugh2024-12-061-46/+54
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Query Interface Adjustments/Refactoring Began the process of adjusting the query interface (and also the shard interface, to a lesser degree) to better accommodate the user. In particular the following changes have been made, 1. The number of necessary template arguments for the query type has been drastically reduced, while also removing the void pointers and manual delete functions from the interface. This was accomplished by requiring many of the sub-types associated with a query (parameters, etc.) to be nested inside the main query class, and by forcing the SHARD type to expose its associated record type. 2. User-defined query return types are now supported. Queries no longer are required to return strictly sets of records. Instead, the query now has LocalResultType and ResultType template parameters (which can be defaulted using a typedef in the Query type itself), allowing much more flexibility. Note that, at least for the short term, the LocalResultType must still expose the same is_deleted/is_tombstone interface as a Wrapped<R> used to, as this is currently needed for delete filtering. A better approach to this is, hopefully, forthcoming. 3. Updated the ISAMTree.h shard and rangequery.h query to use the new interfaces, and adjusted the associated unit tests as well. 4. Dropped the unnecessary "get_data()" function from the ShardInterface concept. 5. Dropped the need to specify a record type in the ShardInterface concept. This is now handled using a required Shard::RECORD member of the Shard class itself, which should expose the name of the record type. * Updates to framework to support new Query/Shard interfaces Pretty extensive adjustments to the framework, particularly to the templates themselves, along with some type-renaming work, to support the new query and shard interfaces. Adjusted the external query interface to take an rvalue reference, rather than a pointer, to the query parameters. * Removed framework-level delete filtering This was causing some issues with the new query interface, and should probably be reworked anyway, so I'm temporarily (TM) removing the feature. * Updated benchmarks + remaining code for new interface
* Added btree thread scaling benchmarkDouglas Rumbaugh2024-05-141-4/+9
|
* Moved thread scalability bench to vldb folderDouglas Rumbaugh2024-05-141-5/+6
|
* Removed patricia trie stuffDouglas Rumbaugh2024-05-141-12/+1
|
* Added program to sample the binary knn filesDouglas Rumbaugh2024-05-111-0/+6
|
* MTree structure sizeDouglas Rumbaugh2024-05-101-0/+6
|
* Added benchmarks for BigANNDouglas Rumbaugh2024-05-091-5/+19
|
* FST benchmarksDouglas Rumbaugh2024-05-031-9/+21
|
* Added a Bentley-Saxe layout policyDouglas Rumbaugh2024-05-011-0/+5
|
* Added VPTree BSM benchmarkDouglas Rumbaugh2024-04-301-0/+6
|
* Alex benchmarkDouglas Rumbaugh2024-04-291-6/+6
|
* Added vptree parmsweep benchmark and fixed some CMake issuesDouglas Rumbaugh2024-04-231-0/+12
|
* TS Parameter sweep benchmarkDouglas Rumbaugh2024-04-221-0/+5
|
* Benchmark update+reorganizationDouglas Rumbaugh2024-04-221-35/+76
| | | | The Alex benchmark isn't updated yet.
* More trie baseline testsDouglas Rumbaugh2024-04-191-16/+36
|
* Updated FSTrie to use const char * instead of std::stringDouglas Rumbaugh2024-04-151-1/+1
| | | | Note: this requires the caller to manage the memory of the strings
* Added a dynamic trie benchmarkDouglas Rumbaugh2024-04-151-0/+4
|