Showing 6 of 6 total issues
Method factory.NewCache
has a Cognitive Complexity of 31 (exceeds 20 allowed). Consider refactoring. Open
Open
func (f *factory) NewCache(settings []Setting) Cache {
m := map[string]*config{}
for _, setting := range settings {
// check prefix
if setting.Prefix == "" {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method factory.NewCache
has 65 lines of code (exceeds 50 allowed). Consider refactoring. Open
Open
func (f *factory) NewCache(settings []Setting) Cache {
m := map[string]*config{}
for _, setting := range settings {
// check prefix
if setting.Prefix == "" {
Method cache.MGet
has 62 lines of code (exceeds 50 allowed). Consider refactoring. Open
Open
func (c *cache) MGet(ctx context.Context, prefix string, keys ...string) (Result, error) {
cfg, ok := c.configs[prefix]
if !ok {
return nil, ErrPfxNotRegistered
}
Method cache.MGet
has 9 return statements (exceeds 4 allowed). Open
Open
func (c *cache) MGet(ctx context.Context, prefix string, keys ...string) (Result, error) {
cfg, ok := c.configs[prefix]
if !ok {
return nil, ErrPfxNotRegistered
}
Method cache.GetByFunc
has 9 return statements (exceeds 4 allowed). Open
Open
func (c *cache) GetByFunc(ctx context.Context, prefix, key string, container interface{}, getter OneTimeGetterFunc) error {
cfg, ok := c.configs[prefix]
if !ok {
return ErrPfxNotRegistered
}
Function Unmarshal
has 5 return statements (exceeds 4 allowed). Open
Open
func Unmarshal(b []byte, value interface{}) error {
if len(b) == 0 {
return nil
}