Code Monkey home page Code Monkey logo

Comments (5)

gillesfabio avatar gillesfabio commented on July 16, 2024

Hi @jinhao,

Thanks for your interest.

This function uses SETNX. When key already holds a value, no operation is performed.

So, this function should not refresh the expire time of the key.

from limiter.

jinhao avatar jinhao commented on July 16, 2024

@gillesfabio

redis 127.0.0.1:6379> get a
"18"
redis 127.0.0.1:6379> ttl a
(integer) 907
redis 127.0.0.1:6379> watch a
OK
redis 127.0.0.1:6379> MULTI
OK
redis 127.0.0.1:6379> setnx a 1000
QUEUED
redis 127.0.0.1:6379> expire a 1000
QUEUED
redis 127.0.0.1:6379> EXEC

  1. (integer) 0
  2. (integer) 1
    redis 127.0.0.1:6379> ttl a
    (integer) 995

this is my test result, .is it any problem? my redis version is 2.6.14

from limiter.

jinhao avatar jinhao commented on July 16, 2024

@gillesfabio
I test it, and add print ttl every request

131     if count < rate.Limit {
132         remaining = rate.Limit - count
133     }
134
135     log.Printf("count:%d ttl:%d remaining:%d\n", count, ttl, remaining)

the result:

➜ http git:(master) ✗ go run main.go
Server is running on port 6379...
2015/10/27 19:03:28 count:2 ttl:60 remaining:2
2015/10/27 19:03:28 count:3 ttl:60 remaining:1
2015/10/27 19:03:30 count:4 ttl:60 remaining:0
2015/10/27 19:03:31 count:5 ttl:60 remaining:0
2015/10/27 19:03:31 count:6 ttl:60 remaining:0
2015/10/27 19:03:33 count:7 ttl:60 remaining:0
2015/10/27 19:03:34 count:8 ttl:60 remaining:0
2015/10/27 19:03:34 count:9 ttl:60 remaining:0
2015/10/27 19:03:36 count:10 ttl:60 remaining:0
2015/10/27 19:03:36 count:11 ttl:60 remaining:0
2015/10/27 19:03:36 count:12 ttl:60 remaining:0
2015/10/27 19:03:38 count:13 ttl:60 remaining:0
2015/10/27 19:03:38 count:14 ttl:60 remaining:0
2015/10/27 19:03:38 count:15 ttl:60 remaining:0
2015/10/27 19:03:49 count:16 ttl:60 remaining:0
2015/10/27 19:03:49 count:17 ttl:60 remaining:0
2015/10/27 19:03:49 count:18 ttl:60 remaining:0

from limiter.

gillesfabio avatar gillesfabio commented on July 16, 2024

👍 Argh. Yes. SETNX only works with value.

Fixed here: 8ba0f24

Tell me if it works for you. I tried with a time.Sleep() and it properly sets TTL.

Thanks @jinhao.

from limiter.

jinhao avatar jinhao commented on July 16, 2024

ok, it works! Thanks.

from limiter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.