بنقرة واحدة
servicestack-performance-tuning
Optimizes ServiceStack services, OrmLite usage, filters, and serialization.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Optimizes ServiceStack services, OrmLite usage, filters, and serialization.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Designs stable, discoverable APIs using routes, metadata, and versioning conventions.
Implements authentication using ServiceStack Auth Providers and session handling.
Applies role-, permission-, and ownership-based authorization using ServiceStack idioms.
Implements AutoQuery services, custom filters, and permission-aware querying.
Designs request/response DTOs using DTO-first, message-based ServiceStack conventions.
Controls OpenAPI / metadata exposure without compromising ServiceStack-first design.
| name | servicestack-performance-tuning |
| description | Optimizes ServiceStack services, OrmLite usage, filters, and serialization. |
ServiceStack is built for high-performance and low-latency. Follow these tips to keep it that way.
[CacheResponse] attribute or manual ICacheClient usage.ServiceStack.HttpCache to control client-side and proxy caching.Db.Select<T>(q => q.Select(x => new { x.Id, x.Name })) to fetch only what's needed.Async methods for I/O.IDbConnectionFactory which handles pooling.[Index] attributes./profiler) to identify bottlenecks.