You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With #5251, we finally caved in the name of performance, and we pre-calculate edge distance and store it. This makes requesting distance values from large table requests very fast.
However, not everyone needs this, and as we're C++ people, we don't believe you should pay for what you don't use.
#5218 captures the idea of making some data optional.
This ticket is specifically about the .distance property added by #5251. It should be possible to optionally generate it, and optionally load it, reducing the disk/memory overhead if you're not interested in this property.
The text was updated successfully, but these errors were encountered:
With #5251, we finally caved in the name of performance, and we pre-calculate edge distance and store it. This makes requesting
distance
values from largetable
requests very fast.However, not everyone needs this, and as we're C++ people, we don't believe you should pay for what you don't use.
#5218 captures the idea of making some data optional.
This ticket is specifically about the
.distance
property added by #5251. It should be possible to optionally generate it, and optionally load it, reducing the disk/memory overhead if you're not interested in this property.The text was updated successfully, but these errors were encountered: