15 lines
		
	
	
		
			289 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			289 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package cachekit
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| // Those constants are used to directly get the cached data from redis
 | |
| // Formatted like {prefix}#{key}
 | |
| const (
 | |
| 	DAAttachment = "attachment"
 | |
| 	DAUser       = "account"
 | |
| )
 | |
| 
 | |
| func FKey(prefix string, key any) string {
 | |
| 	return fmt.Sprintf("%s#%v", prefix, key)
 | |
| }
 |