Additions in this release:

  1. Added CSharpTest.Net.Collections.LurchTable a thread-safe dictionary with the option of linking entries by insert, modify, or access. (LinkedHashMap for C#)
  2. Added CSharpTest.Net.Data.DbGuid to provide time based sequential GUID generation (COMB Guid).
  3. BPlusTree added INodeStoreWithCount and allowed injection of IObjectKeepAlive implementation.
  4. Added Crc64 for a quick 64-bit CRC using algorithm (CRC-64/XZ)
  5. Added a simple HttpServer class.
  6. Added Services/ServiceAccessRights and Services/SvcControlManager to provide more control over services.
  7. Added Http/MimeMessage to parse raw HTML form where ContentType = “multipart/form-data”, including one or more attachments.
  8. Extended the CommandInterpreter to allow exposing console commands over REST services via built-in service.
  9. Added a CallsPerSecondCounter to allow quick estimation of performance metrics in high-traffic code.
  10. Added an experimental TcpServer (currently under test)
  11. Extended the RpcError enumeration to encompass more errors and decorated descriptions.
  12. RpcLibrary now supports RpcServerRegisterIf2 allowing un-authenticated TCP access and control of max TCP request size.
  13. Added the IDL for the RpcLibrary for unmanaged interop

Fixes in this release:

  1. Converted BPlusTree’s Storage.Cache to use LurchTable to address memory issues in buggy LRU cache.
  2. Optimization of BPlusTree’s TransactedCompoundFile in location of free data blocks.
  3. Fixed the dreaded SEHException in the RpcLibrary, now expect acurate RpcException with correct RpcError details.
Comments