修改Components\Forums.cs找到 public static Forum GetForumByPostID(int postID, int userID, bool cacheable) 方法修改 string cacheKey = "PostToForumLookUpTable";为 string cacheKey = "PostToForumLookUpTable" + userID.ToString() + cacheable.ToString();重新编译即可.