Giter Club home page Giter Club logo

demo-animated-banner's People

Contributors

snicoll avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

demo-animated-banner's Issues

unusable

                                   .*:::**.                               
                             :::::::::::::::::::       .                  
                          *::::::::::::::::::::::::   *:                  
                        :::::::::::::::::::::::::::::: .*                 
                      *:::::::::::::::::::::::::::::*   :                 
                     *::::::::::::::::::::::::::::       *                
                 *:::::::* ::::::::::::::::::::          :                
             *::::::::::::::::::::::::**.                ..               
           ::::::::::::::::::.                            :::             
         ::::::::::::::::::                         :     ::::::          
        :::::::::::::::::.                         :      :::::::*        
        :::::::::::::::::                        ::       ::::::::*       
       *::::::::::::::::                       ::        .:::::::::.      
       :::::::::::::::::                    *::.         :::::::::::      
       .:::::::::::::::::               .::::           ::::::::::::      
        :::::::::::::::::.          *::::::            ::::::::::::*      
        .:::::::::::::::::::::::::::::.              ::::::::::::::       
          ::::::::::::::*  .::::                *:::::::::::::::::.       
           *:::::::::::::  ::::::::::::::::::::::::::::::::::::::         
              :::::::::::::::::::::::::::::::::::::::::::::::::.          
                  .*::::::::::::::::::::::::::::::::::::::*.              

redistemplate execute lua

like this:

Integer rateLimit = redisTemplate.execute(redisScript, Lists.newArrayList(key), 
Lists.newArrayList(10,1000));

lua:

local key = "rate.limit:" .. KEYS[1]
local limit = tonumber(ARGV[1])
local expire_time = tonumber(ARGV[2])
local is_exists = redis.call("EXISTS", key)
if is_exists == 1 then
    local count = redis.call("INCR", key);
    if (count ~= false and count ~= "nil") then
        count = tonumber(count)
        if count > limit then
            return 0
        else
            return 1
        end
    else
        redis.call("SET", key, 1)
        redis.call("EXPIRE", key, expire_time)
        return 1
    end
else
    redis.call("SET", key, 1)
    redis.call("EXPIRE", key, expire_time)
    return 1
end

get this exception:

ERR Error running script (call to f_8af0bf804d29e55eb939dc05e8680b4b03a87cdc): @user_script:9: user_script:9: attempt to compare nil with number

can't get ARGV[1] and ARGV[2],why?

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.