Increased sqlite cache size to 30mb

This commit is contained in:
kay.one 2011-06-05 13:01:28 -07:00
commit 4812cb4611
3 changed files with 30 additions and 1 deletions

View file

@ -20,7 +20,7 @@ namespace NzbDrone.Core.Datastore
public static string GetConnectionString(string path)
{
return String.Format("Data Source={0};Version=3;", path);
return String.Format("Data Source={0};Version=3;Cache Size=30000;", path);
}
public static String MainConnectionString