Common Errors
Response cache does not work
- Ensure
ResponseCache(...)is registered beforeNidus_Horse. - Ensure the route is in the cache list (
ResponseCache([routes], ...)) orCacheAllis enabled.
Pool is not reusing
- Ensure the pool was registered with
GetNidus.UsePools<T>. - Ensure you are using
GetNidus.WithPool<T>(orAcquire/Release) within the same process.