mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	* add redis queue * finished indexer redis queue * add redis vendor * fix vet * Update docs/content/doc/advanced/config-cheat-sheet.en-us.md Co-Authored-By: lunny <xiaolunwen@gmail.com> * switch to go mod * Update required changes for new logging func signatures
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| package redis
 | |
| 
 | |
| import (
 | |
| 	"crypto/sha1"
 | |
| 	"encoding/hex"
 | |
| 	"io"
 | |
| 	"strings"
 | |
| )
 | |
| 
 | |
| type scripter interface {
 | |
| 	Eval(script string, keys []string, args ...interface{}) *Cmd
 | |
| 	EvalSha(sha1 string, keys []string, args ...interface{}) *Cmd
 | |
| 	ScriptExists(hashes ...string) *BoolSliceCmd
 | |
| 	ScriptLoad(script string) *StringCmd
 | |
| }
 | |
| 
 | |
| var _ scripter = (*Client)(nil)
 | |
| var _ scripter = (*Ring)(nil)
 | |
| var _ scripter = (*ClusterClient)(nil)
 | |
| 
 | |
| type Script struct {
 | |
| 	src, hash string
 | |
| }
 | |
| 
 | |
| func NewScript(src string) *Script {
 | |
| 	h := sha1.New()
 | |
| 	io.WriteString(h, src)
 | |
| 	return &Script{
 | |
| 		src:  src,
 | |
| 		hash: hex.EncodeToString(h.Sum(nil)),
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (s *Script) Hash() string {
 | |
| 	return s.hash
 | |
| }
 | |
| 
 | |
| func (s *Script) Load(c scripter) *StringCmd {
 | |
| 	return c.ScriptLoad(s.src)
 | |
| }
 | |
| 
 | |
| func (s *Script) Exists(c scripter) *BoolSliceCmd {
 | |
| 	return c.ScriptExists(s.hash)
 | |
| }
 | |
| 
 | |
| func (s *Script) Eval(c scripter, keys []string, args ...interface{}) *Cmd {
 | |
| 	return c.Eval(s.src, keys, args...)
 | |
| }
 | |
| 
 | |
| func (s *Script) EvalSha(c scripter, keys []string, args ...interface{}) *Cmd {
 | |
| 	return c.EvalSha(s.hash, keys, args...)
 | |
| }
 | |
| 
 | |
| // Run optimistically uses EVALSHA to run the script. If script does not exist
 | |
| // it is retried using EVAL.
 | |
| func (s *Script) Run(c scripter, keys []string, args ...interface{}) *Cmd {
 | |
| 	r := s.EvalSha(c, keys, args...)
 | |
| 	if err := r.Err(); err != nil && strings.HasPrefix(err.Error(), "NOSCRIPT ") {
 | |
| 		return s.Eval(c, keys, args...)
 | |
| 	}
 | |
| 	return r
 | |
| }
 |