FASTER icon indicating copy to clipboard operation
FASTER copied to clipboard

Fast persistent recoverable log and key-value store + cache, in C# and C++.

Results 47 FASTER issues
Sort by recently updated
recently updated
newest added

When checking out a fresh copy from `main`, the following F2 tests fail (all related to RMW): ``` Test Duration Traits Error Message HotColdTests/HotColdParameterizedTestParam.Rmw/0 [(2048, false, false)] Failed < 1...

## 📝 Description When calling `ClientSession.ReadAsync` from VB.NET, the compiler raises the following error: ```vbnet 'ReadAsync' is ambiguous because multiple kinds of members with this name exist in class 'ClientSession(Of...

Previously, compaction could stall indefinitely if the provided `until_address` was _equal_ to `hlog.begin_address`. This could occur, if called from an existing test when `auto_compaction` is `false`. In this case, `pages_available`...

FASTERA\cs\src\core\Allocator\MallocFixedPageSize.cs Line 553 ` int numRecords = (int)numBytesToRead / RecordSize;` When numBytesToRead greater than int.Max() recover will stuck My fix: `int numRecords = (int)(numBytesToRead / (ulong)RecordSize);` Not sure if this...

I found that running the samples on windows failed on some drives with: > FASTER.core.CommitFailureException: 'Commit of address range [xxx-yyy] failed with error code 87' Turns out that the sector...

Stack trace: ```System.Exception: Exception on AddOrUpdate. Key=32DEBF420000000002000000, GotSession=True, SessionIsNull=False, KeySerialized=True, SpanByteSerialized=True, IsSmallPayloadSerialized=True, IsLargePayloadSerialized=False, IsUpserted=False, KeySerializedInException=True, CreatedNewSession=True ---> System.NullReferenceException: Object reference not set to an instance of an object. at FASTER.core.FasterKV`2.HandleRetryStatus[Input,Output,Context,FasterSession](OperationStatus...