| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | BSM bugfixes | Douglas Rumbaugh | 2025-04-08 | 1 | -12/+7 |
| | | |||||
| * | Implemented the legacy policies and fixed a few bugs | Douglas Rumbaugh | 2025-04-07 | 7 | -83/+111 |
| | | |||||
| * | working commit (temporary progress, doesn't build) | Douglas Rumbaugh | 2025-04-05 | 7 | -34/+57 |
| | | |||||
| * | LockManager.h: adjusted unlock procedure | Douglas Rumbaugh | 2025-03-03 | 1 | -1/+2 |
| | | | | | | There was a race condition. Now there isn't... or at least there's one less. | ||||
| * | Fixed a few concurrency bugs | Douglas Rumbaugh | 2025-03-03 | 9 | -196/+303 |
| | | |||||
| * | Query Preemption: still has one or two bugs, but mostly works | Douglas Rumbaugh | 2025-02-24 | 4 | -13/+51 |
| | | |||||
| * | Fixed a few benchmark bugs | Douglas Rumbaugh | 2025-02-17 | 1 | -1/+6 |
| | | |||||
| * | Multi-threaded mixed workload benchmark | Douglas Rumbaugh | 2025-02-17 | 1 | -10/+1 |
| | | |||||
| * | Fixed legacy tiering policy | Douglas Rumbaugh | 2025-02-17 | 3 | -10/+16 |
| | | |||||
| * | Parallel background reconstructions appear to be working! | Douglas Rumbaugh | 2025-02-14 | 5 | -84/+48 |
| | | |||||
| * | progress towards resolving asynch structure merges | Douglas Rumbaugh | 2025-02-13 | 5 | -138/+119 |
| | | |||||
| * | more updates | Douglas Rumbaugh | 2025-02-11 | 2 | -16/+28 |
| | | |||||
| * | Progress: began adding parallel merging and locking of levels | Douglas Rumbaugh | 2025-02-11 | 14 | -85/+179 |
| | | |||||
| * | Tiering: adjusted layout policy to properly handle L0 | Douglas Rumbaugh | 2025-02-06 | 1 | -1/+1 |
| | | |||||
| * | Background compaction stuff | Douglas Rumbaugh | 2025-02-06 | 11 | -85/+340 |
| | | |||||
| * | Bug fixes | Douglas Rumbaugh | 2025-02-04 | 2 | -3/+3 |
| | | |||||
| * | More updates | Douglas Rumbaugh | 2025-01-31 | 6 | -33/+82 |
| | | |||||
| * | progress | Douglas Rumbaugh | 2025-01-27 | 11 | -215/+196 |
| | | |||||
| * | some progress | Douglas Rumbaugh | 2025-01-24 | 3 | -74/+33 |
| | | |||||
| * | Finished rename of Epoch to Version + imported changes to psudb-common | Douglas Rumbaugh | 2025-01-22 | 4 | -7/+176 |
| | | |||||
| * | Progress | Douglas Rumbaugh | 2025-01-17 | 11 | -345/+254 |
| | | |||||
| * | Additional layout policies + more flexibility in buffer flushing | Douglas Rumbaugh | 2025-01-16 | 5 | -29/+229 |
| | | |||||
| * | Triespline: minor tweak to buffer query | Douglas Rumbaugh | 2025-01-07 | 1 | -1/+2 |
| | | | | | A change that should have been in the last commit | ||||
| * | Fixed a few Triespline related bugs | Douglas Rumbaugh | 2025-01-07 | 2 | -31/+21 |
| | | |||||
| * | Began migrating benchmarks over to new interface | Douglas Rumbaugh | 2024-12-23 | 1 | -2/+2 |
| | | |||||
| * | More updates | Douglas B. Rumbaugh | 2024-12-22 | 3 | -6/+6 |
| | | | | | | | | BSM is currently broken--I'll need to think a bit about how best to actually implement this in the current framework (if I even want to port it over) because it doesn't use the same flushing mechanism as most other approaches. | ||||
| * | Continued development | Douglas B. Rumbaugh | 2024-12-22 | 18 | -145/+186 |
| | | |||||
| * | Began overhauling reconstruction mechanism | Douglas B. Rumbaugh | 2024-12-22 | 11 | -755/+469 |
| | | |||||
| * | Adjusted query result interfacesHEADmaster | Douglas B. Rumbaugh | 2024-12-06 | 9 | -219/+194 |
| | | | | | | | | 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). | ||||
| * | Warning fixes | Douglas B. Rumbaugh | 2024-12-06 | 3 | -6/+7 |
| | | |||||
| * | Interface update (#5) | Douglas B. Rumbaugh | 2024-12-06 | 33 | -4206/+3676 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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 | ||||
| * | MTree structure size | Douglas Rumbaugh | 2024-05-10 | 1 | -1/+1 |
| | | |||||
| * | Fixed arithmetic bug | Douglas Rumbaugh | 2024-05-09 | 1 | -1/+1 |
| | | |||||
| * | TSParmsweep: enabled forcing a full buffer scan | Douglas Rumbaugh | 2024-05-08 | 2 | -2/+14 |
| | | |||||
| * | Missing file from last commit | Douglas Rumbaugh | 2024-05-06 | 1 | -2/+14 |
| | | |||||
| * | Added a Bentley-Saxe layout policy | Douglas Rumbaugh | 2024-05-01 | 5 | -11/+104 |
| | | |||||
| * | Query optimizations | Douglas Rumbaugh | 2024-05-01 | 2 | -24/+22 |
| | | |||||
| * | TS+PGM: Inlined manually the sorted array merge for performance reasons | Douglas Rumbaugh | 2024-04-22 | 2 | -34/+248 |
| | | |||||
| * | Properly implemented support for iteratively decomposable problems | Douglas Rumbaugh | 2024-04-19 | 9 | -64/+123 |
| | | |||||
| * | Fixed some benchmarking bugs | Douglas Rumbaugh | 2024-04-19 | 1 | -1/+1 |
| | | |||||
| * | Removed debug print statements | Douglas Rumbaugh | 2024-04-19 | 2 | -4/+0 |
| | | |||||
| * | PGM Shard: Fully disabled bloom filter | Douglas Rumbaugh | 2024-04-19 | 1 | -1/+0 |
| | | |||||
| * | More trie baseline tests | Douglas Rumbaugh | 2024-04-19 | 1 | -0/+199 |
| | | |||||
| * | Benchmark updates | Douglas Rumbaugh | 2024-04-19 | 9 | -28/+22 |
| | | |||||
| * | Updated FSTrie to use const char * instead of std::string | Douglas Rumbaugh | 2024-04-15 | 2 | -13/+22 |
| | | | | | Note: this requires the caller to manage the memory of the strings | ||||
| * | Missed file from last commit | Douglas Rumbaugh | 2024-04-15 | 1 | -1/+1 |
| | | |||||
| * | stuff | Douglas Rumbaugh | 2024-04-11 | 1 | -1/+1 |
| | | |||||
| * | Updated FSTrie benchmark and some minor fixes | Douglas B. Rumbaugh | 2024-03-26 | 2 | -2/+4 |
| | | |||||
| * | Updates for build on OpenBSD | Douglas B. Rumbaugh | 2024-03-25 | 4 | -3/+9 |
| | | | | | | | | | | Necessary updates to get the codebase building under OpenBSD 7.5 with clang. This is a minimal set of changes to get building to work, which includes disabling several things that aren't directly compatable. More work will be necessary to get full functionality. In particular, Triespline, PGM, and the reference M-tree do not currently build on OpenBSD with clang due to GNU dependencies or other gcc specific features. | ||||
| * | PointLookup: added a point lookup query for unique indexes, and some tests | Douglas Rumbaugh | 2024-03-22 | 2 | -0/+123 |
| | | |||||