This commit introduces several architectural improvements and optimizations across the codebase: - **Performance & Reliability**: - Implemented Redis pipelining in `ConversationCache.CacheMessage` to reduce network round-trips. - Added a circuit breaker to the JPush client to prevent cascading failures. - Introduced batch deletion and batch member addition capabilities in repositories. - Added message idempotency support using `client_msg_id` and a Redis-based cache. - Optimized WebSocket handling with connection limits (total and per-user) and improved error logging. - **Code Refactoring**: - Refactored `Router` to use a `RouterDeps` struct, simplifying the constructor and improving maintainability. - Unified model ID generation logic using new `id_helper.go` (supporting UUID and Snowflake). - Standardized JSON serialization/deserialization in models using `json_helper.go`. - Refactored DTO conversion logic, specifically for `UserResponse` (using functional options) and `Report` responses. - Removed redundant/deprecated DTOs like `PostDetailResponse` and `TradeItemDetailResponse`. - **Cache Improvements**: - Enhanced `LayeredCache` with `SetRaw` to avoid double-encoding when promoting values from Redis to local cache. - Added `DeleteBatch` support to the cache interface. - **Other Changes**: - Cleaned up `config.go` by removing redundant default values and explicit environment variable overrides. - Improved WebSocket registration flow to handle connection limits gracefully.
56 lines
936 B
Go
56 lines
936 B
Go
package model
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/google/uuid"
|
|
"gorm.io/gorm"
|
|
|
|
"with_you/internal/pkg/utils"
|
|
)
|
|
|
|
func SetUUIDIfEmpty(id *string) {
|
|
if *id == "" {
|
|
*id = uuid.New().String()
|
|
}
|
|
}
|
|
|
|
func SetSnowflakeStringID(id *string) error {
|
|
if *id == "" {
|
|
sid, err := utils.GetSnowflake().GenerateID()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*id = strconv.FormatInt(sid, 10)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func SetSnowflakeInt64ID(id *int64) error {
|
|
if *id == 0 {
|
|
sid, err := utils.GetSnowflake().GenerateID()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
*id = sid
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func GenerateUUID() string {
|
|
return uuid.New().String()
|
|
}
|
|
|
|
func GenerateSnowflakeString() (string, error) {
|
|
id, err := utils.GetSnowflake().GenerateID()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strconv.FormatInt(id, 10), nil
|
|
}
|
|
|
|
func GenerateSnowflakeInt64() (int64, error) {
|
|
return utils.GetSnowflake().GenerateID()
|
|
}
|
|
|
|
func nop(_ *gorm.DB) error { return nil } |