github.com/cs3org/reva/v2@v2.27.7/changelog/2.11.0_2022-11-03/fix-malformed-uid-string.md (about)

     1  Bugfix: Fix malformed uid string in cache
     2  
     3  The rediscache returns a uid in the format of `<tablename>uid:<someuid>` in the getter
     4  this results in issues when trying to delete the key from the cache store, because
     5  the Delete function will prepend the table name to the string which will not be resolvable in redis
     6  (e.g. `<tablename><tablename>uid:<somuid>`)
     7  
     8  https://github.com/cs3org/reva/pull/3338
     9  https://github.com/owncloud/ocis/issues/4772