HDFGroup / vol-rest

HDF5 REST VOL Connector
Other
5 stars 8 forks source link

Refactor tracking of open objects #96

Closed jhendersonHDF closed 7 months ago

jhendersonHDF commented 8 months ago

Rather than inserting an object's pointer value into a hash table for its particular type ID, we should instead hash the object's URI value and insert that value into the type ID's hash table instead. That way, when we need to check if an object is already opened, we can perform a single hash table lookup rather than needing to iterate through the hash table.

mattjala commented 7 months ago

Resolved in #102