[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.programming.threads

An important subject

Ramine

4/10/2015 2:09:00 AM

Hello,


I have come to a very important subject...

As you have noticed i have implemented a concurrent Skiplist, here it is:

https://sites.google.com/site/aminer68/concurren...

As you will notice this concurrent Skiplist uses a distributed
reader-writer lock , but what is special about this concurrent Skiplist?
if you look at the other scalable concurrent Skiplists that are lockfree
or that uses locks, you will immediatly notice that they write
and read there contents BY VALUE , and this is a serious limitation,
because if you want to insert complex objects BY REFERENCE and work
with them like a database, this is not possible, this is not the same as
my concurrent Skiplist above, because my concurrent Skiplist above works
by inserting the object by reference and this is really useful , other
than that my concurrent Skiplist have a decent throughput on the writer
side and it is scalable on the reader side, other than that it has also
another advantage because it facilitates a lot the reasonning about
correctness and that's also very important.




Thank you,
Amine Moulay Ramdane.