CSharpTest.Net.Collections
CSharpTest.Net.Collections copied to clipboard
BPlusTree and other collections moved from http://code.google.com/p/csharptest-net
ref: http://stackoverflow.com/questions/35745332/csharptest-net-collections-bplustree-recentcache-bug/41483216#41483216
This resolves #17 by increasing the number of bytes for the Length value to the full 4 bytes needed to accurately represent integers up to 1 GB, which is what...
If you have very large nodes (single-node size > 16 MB), you can increase the FileBlockSize to accommodate the larger nodes. This works fine when writing the data, however if...
We are trying to run Lucene.Net 4.8 on a Xamarin.iOS app, but it doesn't work due to the fact that it depends on LurchTable, that uses some instructions not fully...
You have [advertised LurchTable as a replacement for `LinkedHashMap`](http://csharptest.net/1279/introducing-the-lurchtable-as-a-c-version-of-linkedhashmap/). Per [this answer](http://stackoverflow.com/a/2889800/181087) on StackOverflow: > `LinkedHashMap` will iterate in the order in which the entries were put into the map...
First of all, I would like to thank you (again) for sharing such an excellent work with us. I usually use AddOrUpdate method to add a new item to the...
Hi, I should say: BPlusTree has lots of quite utile features specially for iterations. Features such as: tree.EnumerateFrom, tree.EnumerateRange, or tree.GetEnumerator(). Leveraging on these functions most of common operations are...
I am upgrading my project to .NET Core 2.0 and discovered that the LurchTable tests have a method that depends on the implementation of `new Guid(byte[])` and `guid.ToByteArray()`: ```c# private...
Complete bug information posted at: http://stackoverflow.com/questions/35745332/csharptest-net-collections-bplustree-recentcache-bug/41483216#41483216
Hi, Just checking the code, I see on https://github.com/csharptest/CSharpTest.Net.Collections/blob/master/src/CSharpTest.Net.Collections/IO/IOStream.cs#L68 that you are initializing bytesRead with 0. I believe the correct value should be "offset". Without that, the offset argument is...