summaryrefslogtreecommitdiffstats
path: root/include/framework/interface
Commit message (Collapse)AuthorAgeFilesLines
* Updated FSTrie to use const char * instead of std::stringDouglas Rumbaugh2024-04-151-0/+17
| | | | Note: this requires the caller to manage the memory of the strings
* Record.h: Fixed wrapped record conceptDouglas Rumbaugh2024-03-221-3/+3
|
* Record.h: Removed manual constructor and adjusted wrapped header fieldsDouglas Rumbaugh2024-03-221-10/+26
|
* Updates/progress towards succinct trie supportDouglas Rumbaugh2024-03-201-2/+10
|
* Comment updates/fixesDouglas Rumbaugh2024-02-092-9/+3
|
* Updated VPTree to new shard/query interfacesDouglas Rumbaugh2024-02-081-0/+19
|
* Fully realized shard concept interfaceDouglas Rumbaugh2024-02-071-16/+9
|
* Fully implemented Query concept and adjusted queries to use itDouglas Rumbaugh2024-02-071-15/+10
|
* Initial rough-out of internal statistics trackerDouglas Rumbaugh2024-01-191-1/+2
| | | | | | Need to figure out the best way to do the detailed tracking in a concurrent manner. I was thinking just an event log, with parsing routines for extracting statistics. But that'll be pretty slow.
* Multiple concurrency bug fixesDouglas Rumbaugh2024-01-171-2/+3
| | | | | | | | A poorly organized commit with fixes for a variety of bugs that were causing missing records. The core problems all appear to be fixed, though there is an outstanding problem with tombstones not being completely canceled. A very small number are appearing in the wrong order during the static structure test.
* Initial integration of new buffering scheme into frameworkDouglas Rumbaugh2024-01-122-5/+1
| | | | | It isn't working right now (lotsa test failures), but we're to the debugging phase now.
* Comment and License updatesDouglas Rumbaugh2023-11-074-4/+4
|
* Refactoring progressDouglas Rumbaugh2023-11-061-1/+1
|
* started refactoring queries interfaceDouglas B. Rumbaugh2023-11-021-0/+6
|
* General Comment + Consistency updatesDouglas Rumbaugh2023-10-304-24/+39
|
* Began moving to an explicit epoch-based systemDouglas Rumbaugh2023-10-231-2/+1
| | | | | | | I started moving over to an explicit Epoch based system, which has necessitated a ton of changes throughout the code base. This will ultimately allow for a much cleaner set of abstractions for managing concurrency.
* Initial pass w/ new scheduler setupDouglas Rumbaugh2023-10-201-13/+4
| | | | currently there's a race condition of some type to sort out.
* Re-structuring Project + scheduling updatesDouglas Rumbaugh2023-09-254-0/+306
This is a big one--probably should have split it apart, but I'm feeling lazy this morning. * Organized the mess of header files in include/framework by splitting them out into their own subdirectories, and renaming a few files to remove redundancies introduced by the directory structure. * Introduced a new framework/ShardRequirements.h header file for simpler shard development. This header simply contains the necessary includes from framework/* for creating shard files. This should help to remove structural dependencies from the framework file structure and shards, as well as centralizing the necessary framework files to make shard development easier. * Created a (currently dummy) SchedulerInterface, and make the scheduler implementation a template parameter of the dynamic extension for easier testing of various scheduling policies. There's still more work to be done to fully integrate the scheduler (queries, multiple buffers), but some more of the necessary framework code for this has been added as well. * Adjusted the Task interface setup for the scheduler. The task structures have been removed from ExtensionStructure and placed in their own header file. Additionally, I started experimenting with using std::variant, as opposed to inheritence, to implement subtype polymorphism on the Merge and Query tasks. The scheduler now has a general task queue that contains both, and std::variant, std::visit, and std::get are used to manipulate them without virtual functions. * Removed Alex.h, as it can't build anyway. There's a branch out there containing the Alex implementation stripped of the C++20 stuff. So there's no need to keep it here.