Coder Social home page Coder Social logo

demo-animated-banner's Introduction

🍃 Stéphane Nicoll - Spring Engineering Team

Greetings! I'm Stéphane Nicoll, and my journey in the dynamic world of technology has been deeply intertwined with the transformative power of the Spring framework. With a passion for crafting innovative solutions and a commitment to inclusive collaboration, I'm honored to be a part of the vibrant Spring community.

🚀 About My Spring Journey: Humbled by the ever-evolving landscape of Spring, I've dedicated most of my career to navigating its intricacies and contributing to its growth. From core development to advocating best practices, my goal is to empower developers and teams to harness the full potential of the Spring ecosystem.

🤝 Collaboration in the Spring Community: The heart of Spring beats in its community, and I'm grateful to have collaborated with brilliant minds and passionate developers. Let's connect and explore how our shared experiences in the Spring ecosystem can pave the way for even greater innovation and success.

🌐 Advocating for Inclusive Practices: Beyond code, I'm a firm believer in fostering inclusive practices within the Spring community and elsewhere. Join me in creating an environment where diverse voices are not just heard but celebrated, contributing to a culture of innovation and collaboration.

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

demo-animated-banner's Issues

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?

unusable

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

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.