yuqi1129 opened a new issue, #8817: URL: https://github.com/apache/gravitino/issues/8817
### What would you like to be improved? Assuming there are three tags (tag1, tag2, tag3) that has been associated with catalog1, then the data in cacheData will be ``` catalog1 -> List<tag1, tag2, tag3> ``` Data in the reverse index will be ``` tag1 -> catalog1 tag2 -> catalog1 tag3 -> catalog1 ``` However, if catalog2 also associated with tag1, tag2, tag3, then data will be ``` cache data: cataog2 -> List<tag1, tag2, tag3> reverse index tag1 -> catalog2 (overwrite catalog1) tag2 -> catalog2 (overwrite catalog1) tag3 -> catalog2 (overwrite catalog1) ``` It seems the value of reversed index should also a list. ### How should we improve? _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
