mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-02 18:47:18 -05:00
For API call /Items/{item id} GetBaseItemDto will return the counts of related items e.g. artists, albums, songs. GetBaseItemDto currently does this by calling GetTaggedItems which retrieves the objects into memory to count them. Replace with SQL count.
Fixes:
This should be an improvement for any large libraries, but especially large music libraries. Example:
Request Library -> Genres -> any very popular genre in your large library, e.g. Classical
Number of albums = 1552, songs = 23515, ...
- Before change: Try to retrieve 1552 albums, 23515 songs, ... in memory, API never returns, database on fire
- After change: API returns in 367ms and Genre view opens with 200 albums in 2 seconds
I verified the numbers returned are correct but note that there is a bug somewhere else in Jellyfin that is setting TopParentId to NULL for a large portion of my MusicArtists, which causes them to not be counted by the existing GetCount(). This is not related to this change, also happens with the existing code, and does not seem to affect the Web UI.
Includes Cory's changes in:
- https://github.com/jellyfin/jellyfin/pull/14610#issuecomment-3172211468
- https://github.com/jellyfin/jellyfin/pull/14610#issuecomment-3172239154
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
/// <summary>
|
|
/// Marker interface.
|
|
/// </summary>
|
|
public interface IItemByName
|
|
{
|
|
IReadOnlyList<BaseItem> GetTaggedItems(InternalItemsQuery query);
|
|
|
|
TaggedItemCounts GetTaggedItemCounts(InternalItemsQuery query);
|
|
}
|
|
|
|
public interface IHasDualAccess : IItemByName
|
|
{
|
|
bool IsAccessedByName { get; }
|
|
}
|
|
|
|
public class TaggedItemCounts
|
|
{
|
|
public int? AlbumCount { get; set; }
|
|
|
|
public int? ArtistCount { get; set; }
|
|
|
|
public int? EpisodeCount { get; set; }
|
|
|
|
public int? MovieCount { get; set; }
|
|
|
|
public int? MusicVideoCount { get; set; }
|
|
|
|
public int? ProgramCount { get; set; }
|
|
|
|
public int? SeriesCount { get; set; }
|
|
|
|
public int? SongCount { get; set; }
|
|
|
|
public int? TrailerCount { get; set; }
|
|
|
|
public int ChildCount => (AlbumCount ?? 0) + (ArtistCount ?? 0) + (EpisodeCount ?? 0) + (MovieCount ?? 0) + (MusicVideoCount ?? 0) + (ProgramCount ?? 0) + (SeriesCount ?? 0) + (SongCount ?? 0) + (TrailerCount ?? 0);
|
|
}
|
|
}
|