diff --git a/config/dev.exs b/config/dev.exs index 74cae0c4..6c752446 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -3,7 +3,6 @@ import Config # Configure your database config :music_library, MusicLibrary.Repo, database: Path.expand("../data/music_library_dev.db", __DIR__), - cache_size: -64_000, pool_size: 10, stacktrace: true, show_sensitive_data_on_connection_error: true diff --git a/config/runtime.exs b/config/runtime.exs index 37d5328b..90dfc618 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -38,7 +38,6 @@ end config :music_library, MusicLibrary.Repo, auto_vacuum: :incremental, - temp_store: :memory, load_extensions: [ MusicLibrary.Repo.extension_path("unicode"), MusicLibrary.Repo.extension_path("vec0") @@ -100,7 +99,6 @@ if config_env() == :prod do # 128MB * pool_size = base memory usage cache_size: -128_000, pool_size: String.to_integer(System.get_env("POOL_SIZE") || "5"), - temp_store: :memory, show_sensitive_data_on_connection_error: false background_database_path =