$userSpace] * @since 13.0.0 */ public function getUsedSpaceForUsers(array $users); /** * Clear all entries from the in-memory cache * * @since 20.0.0 */ public function clear(): void; /** * Get all cached mounts for a user * * @param IUser $user * @param string $path * @return ICachedMountInfo * @throws NotFoundException * @since 24.0.0 */ public function getMountForPath(IUser $user, string $path): ICachedMountInfo; /** * Get all cached mounts for a user inside a path * * @param IUser $user * @param string $path * @return ICachedMountInfo[] * @throws NotFoundException * @since 24.0.0 */ public function getMountsInPath(IUser $user, string $path): array; }