before using this project, you need to install the following packages:
sudo apt install build-essentialbrew install make, gcc, g++make comparison between skip list and SCSL and
./test - test scsl cache miss
perf stat -e cache-references,cache-misses ./test1- test standard skip list cache miss
perf stat -e cache-references,cache-misses ./test2
- The performance of SCSL is better than standard skip list. almost 1.2~3 times faster
- The cache miss of SCSL is better than standard skip list.