sociomantic-tsunami / dhtproto

Distributed Hash Table protocol definition, client, fake node, and tests
Boost Software License 1.0
5 stars 22 forks source link

Change storage engine getter to return via delegate #209

Closed tiyash-basu-sociomantic closed 5 years ago

tiyash-basu-sociomantic commented 5 years ago

This improves performance by reducing by one the number of times the value(s) gets copied before being returned.

The requests affected in this change are Get, GetChannelSize, GetChannels, GetNumConnections, GetResponsibleRange, GetSize.

Fixes #144