Loading...
Loading...
Found 21 Skills
Payment support based on Stripe, supporting credit cards and debit cards
HTTP outcalls performed by the backend canister (not in the frontend).
Requests invite-link / RSVP based access where guests can submit responses without login while admin can view responses with login.
Approval-based user management.
Send an email with multiple to, cc and bcc addresses.
Spring Cache abstraction for Spring Boot 3.x. Covers @Cacheable, @CacheEvict, @CachePut, cache managers (Caffeine, Redis, EhCache), TTL configuration, cache keys, conditional caching, and cache synchronization. USE WHEN: user mentions "spring cache", "@Cacheable", "@CacheEvict", "cache manager", "Caffeine cache", "@EnableCaching", "cache abstraction" DO NOT USE FOR: Redis operations - use `spring-data-redis` instead, distributed caching architecture - combine with `redis` skill
使用 Spring Cache 抽象实现缓存策略,支持多种缓存提供商(Redis、Caffeine、EhCache 等)。使用场景:(1) 减少数据库查询,(2) 提高 API 响应时间,(3) 实现读写缓存策略,(4) 配置缓存失效策略,(5) 实现多级缓存
Core infrastructure providing backend connection configuration, storage client, and React app entry point.
Instruction set for enabling and operating the Spring Cache abstraction in Spring Boot when implementing application-level caching for performance-sensitive workloads.