• A
    Optimize URI escaping · a6179257
    Andrew White 提交于
    The URI::Parser#escape method is a general use method that has to deal
    with a variety of input however our use of it is limited in scope so
    we can increase the performance by implementing our specific needs
    within ActionDispatch::Journey::Router::Utils directly.
    
    If there is no encoding required then there is no change in performance
    or number of objects allocated, but for each character that needs to be
    encoded we save five object allocations and gain a performance boost.
    The performance boost seen varies from 20% when there is one character
    to over 50% when encoding ten characters.
    a6179257
utils.rb 2.4 KB