Files
ChunilENG/Packages/com.tivadar.best.http/CHANGELOG.md
정영민 2dd5d814a7 update
2025-02-20 09:59:37 +09:00

2.1 KiB

Changelog

3.0.0 (2023-01-01)

Additions and improvements

  • New namespace hierarchy.
  • Added DNSCache implementation to speed up consecutive connection processes.
  • Added support for DNSCache to manually store and retrieve entries.
  • Added new Negotiator class help building new plugins that doesn't use HTTP, but require the same lower-level infrastructure.
  • Added new TCPRingmaster class to speed up TCP connection process by sending out multiple tcp connection requests and use the first connected one.
  • Reimplemented connection logic to use the new DNS cache, negotiator and tcp-ringmaster.
  • Reimplemented network read and write operations. Instead of blocking Reads&Writes, now the plugin uses non-blocking functions. This enabled implementing new ways for downloads and uploads. There's forward and backward feedback between the low level tcp layer and higher level connection layers. If the download-stream's buffer is full, it can notify the tcp layer that it can resume receiving from the server.
  • Reimplemented HTTPCache, it's got more robust and future proof.
  • (#69) Now it's possible and easy to populate the local HTTP cache.
  • Added new, cleaner samples for both old and new features.
  • Halved active threads per connections.
  • Added Memory and Network profilers.

Removals

  • Removed old, cluttered samples.

Fixes

  • Fixed chaos around different upload sources (RawData, Forms, UploadStream) and unified them in one UploadStream.

For API changes and upgrade guides see the Upgrade Guide topic.