mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 03:30:06 +00:00
remove shrink mem timer
This commit is contained in:
parent
e15ea55b56
commit
ee2fbf59d0
8 changed files with 1 additions and 146 deletions
|
|
@ -55,8 +55,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||
_logger = logManager.GetLogger(GetType().Name);
|
||||
}
|
||||
|
||||
private SqliteShrinkMemoryTimer _shrinkMemoryTimer;
|
||||
|
||||
/// <summary>
|
||||
/// Opens the connection to the database
|
||||
/// </summary>
|
||||
|
|
@ -80,8 +78,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||
};
|
||||
|
||||
_connection.RunQueries(queries, _logger);
|
||||
|
||||
_shrinkMemoryTimer = new SqliteShrinkMemoryTimer(_connection, _writeLock, _logger);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -402,12 +398,6 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||
{
|
||||
lock (_disposeLock)
|
||||
{
|
||||
if (_shrinkMemoryTimer != null)
|
||||
{
|
||||
_shrinkMemoryTimer.Dispose();
|
||||
_shrinkMemoryTimer = null;
|
||||
}
|
||||
|
||||
if (_connection != null)
|
||||
{
|
||||
if (_connection.IsOpen())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue