Ignore:
Timestamp:
09/23/26 13:29:17 (13 hours ago)
Author:
Stefan-Saveski <stefansaveski19@…>
Branches:
master
Children:
2853f2e
Parents:
e7bafc0 (diff), 002cf5f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/phase8-transactions-pooling'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Program.cs

    re7bafc0 r0496e6e  
    6666// Postgres type by name; PgEnumLabels covers the members whose label is not
    6767// simply the lowercased member name.
    68 builder.Services.AddDbContext<AppDbContext>(options =>
     68// AddDbContextPool reuses the DbContext instances themselves; the connections
     69// underneath them are pooled separately by Npgsql, sized in the connection
     70// string. Both matter here because every physical connection is one more
     71// channel through the SSH tunnel.
     72builder.Services.AddDbContextPool<AppDbContext>(options =>
    6973    options.UseNpgsql(
    7074        builder.Configuration.GetConnectionString("DefaultConnection"),
Note: See TracChangeset for help on using the changeset viewer.