src/services/memcache.ts   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 13
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 10
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
mnd 0
bc 0
fnc 1
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A Memcache.configure 0 3 1
1
import Service from './service'
2
3
class Memcache extends Service {
4
    requireRoot = false
5
    service = 'libmemcached'
6
7
    configure(): Promise<boolean> {
8
        return Promise.resolve(false)
9
    }
10
11
}
12
13
export default Memcache