deltaSyncEnabled returns true if delta sync is enabled. This is controlled at the database level.
()
| 188 | |
| 189 | // deltaSyncEnabled returns true if delta sync is enabled. This is controlled at the database level. |
| 190 | func (c *DatabaseCollection) deltaSyncEnabled() bool { |
| 191 | return c.dbCtx.Options.DeltaSyncOptions.Enabled |
| 192 | } |
| 193 | |
| 194 | // deltaSyncRevMaxAgeSeconds is the number of seconds that old revisions will be in memory. This is controlled at database level. |
| 195 | func (c *DatabaseCollection) deltaSyncRevMaxAgeSeconds() uint32 { |
no outgoing calls
no test coverage detected