Just wondering how liberal I can be with group/dataset names or if I need to make the names short (and hence less readable). This would be for a HDF5 file that contains many groups and datasets that would have many duplicate names. Some XML APIs do string interning as an optimization and it would make sense for HDF to do this but I can't tell from the online documentation if it does.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
No, not explicitly. The HDF5 file format does not specify any compression for the object headers (where the group and dataset names are stored). The actual writing to disk is handled through one of several low-level file drivers. I don't know if any of these do string interning, but it is possible to write your own file driver which does. The technical notes on the virtual file layer may be of some help if you need to do this. |
|||
|
|
|
I believe it's reliable to put whatever string you want to as a group or dataset name in HDF5. For example (from Python)
Alternatively, you may want to use cruder group and dataset names, along with a verbose string-valued attribute to explain the meaning of the data. |
|||
|
|