github.com/goravel/framework@v1.13.9/cache/utils.go (about)

     1  package cache
     2  
     3  import (
     4  	"github.com/goravel/framework/contracts/config"
     5  )
     6  
     7  func prefix(config config.Config) string {
     8  	return config.GetString("cache.prefix") + ":"
     9  }