simdb icon indicating copy to clipboard operation
simdb copied to clipboard

A high performance, shared memory, lock free, cross platform, single file, no dependencies, C++11 key-value store

Results 8 simdb issues
Sort by recently updated
recently updated
newest added

Hello, I met some problems when I compiled with simdb.hpp .How to deal with them. Thanks! In file included from simdbTest.cpp:5:0: simdb.hpp: In member function 'bool CncrLst::headCmpEx(CncrLst::u64*, au64)': simdb.hpp:505:5: error:...

``` simdb.hpp: In member function ‘CncrLst::u32 CncrLst::nxt()’: simdb.hpp:519:54: error: use of deleted function ‘std::atomic::atomic(const std::atomic&)’ 519 | }while( !headCmpEx( &curHead.asInt, nxtHead.asInt) ); | ^ ```

Hi, first, thank you for your wonderful work. I was able to compile and run the simdb code. From a single process, I'm able to create a simdb using the...

Fix issue: https://github.com/LiveAsynchronousVisualizedArchitecture/simdb/issues/4 and https://github.com/LiveAsynchronousVisualizedArchitecture/simdb/issues/8 - headCmpEx() changed to not use the atomic copy operator that is set to deleted in macos (Xcode 14). Fixing the following error: ```sh ./simdb.hpp:554:41:...