Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 270 Bytes

incrdecr.md

File metadata and controls

10 lines (7 loc) · 270 Bytes

INCR, DECR

r.incr(key) r.incrby(key, double) r.incrbyfloat(key, double) r.decr(key) r.decrby(key, double)

  • r.precision will handle the decimal places for *by... command.

  • return type will be double.

      ret = r.incr('go-redis')
    
      ret = 2