1. 20 6月, 2017 1 次提交
  2. 11 6月, 2017 1 次提交
  3. 07 6月, 2017 1 次提交
    • J
      Cache: write_multi (#29366) · 2b96d582
      Jeremy Daer 提交于
      Rails.cache.write_multi foo: 'bar', baz: 'qux'
      
      Plus faster `fetch_multi` with stores that implement `write_multi_entries`.
      Keys that aren't found may be written to the cache store in one shot
      instead of separate writes.
      
      The default implementation simply calls `write_entry` for each entry.
      Stores may override if they're capable of one-shot bulk writes, like
      Redis `MSET`.
      2b96d582
  4. 24 5月, 2017 1 次提交
  5. 20 5月, 2017 1 次提交
  6. 19 5月, 2017 2 次提交
  7. 19 4月, 2017 1 次提交
  8. 18 4月, 2017 1 次提交
  9. 13 2月, 2017 1 次提交
  10. 24 1月, 2017 1 次提交
  11. 24 12月, 2016 2 次提交
  12. 14 11月, 2016 1 次提交
  13. 29 10月, 2016 1 次提交
  14. 17 9月, 2016 3 次提交
  15. 16 8月, 2016 1 次提交
  16. 07 8月, 2016 2 次提交
  17. 02 7月, 2016 1 次提交
  18. 06 6月, 2016 1 次提交
  19. 18 4月, 2016 1 次提交
  20. 17 4月, 2016 2 次提交
  21. 21 2月, 2016 1 次提交
    • K
      Revert "Instrument read_multi". · c4a46fa7
      Kasper Timm Hansen 提交于
      Reevaluating the log output generated from this instrumentation,
      we've found that it wasn't all that useful in practice.
      
      ```
      Caches multi read:
      - views/david/2/4184ab71db6849621a4d8820fcd2c0ad
      - views/david/2/4184ab71db6849621a4d8820fcd2c0ad
      - views/david/3/4184ab71db6849621a4d8820fcd2c0ad
      - views/david/3/4184ab71db6849621a4d8820fcd2c0ad
      ```
      
      If rendering many templates the output is inscrutable, and it's impossible
      to see how many cache misses there were.
      
      Revert ca6aba7f and implement a better way later.
      c4a46fa7
  22. 14 12月, 2015 1 次提交
  23. 03 12月, 2015 1 次提交
  24. 20 11月, 2015 1 次提交
  25. 11 11月, 2015 2 次提交
  26. 15 9月, 2015 1 次提交
  27. 20 8月, 2015 1 次提交
  28. 24 6月, 2015 1 次提交
  29. 12 3月, 2015 1 次提交
  30. 05 3月, 2015 2 次提交
  31. 21 2月, 2015 1 次提交
    • K
      Instrument read_multi. · ca6aba7f
      Kasper Timm Hansen 提交于
      Adds `read_multi` instrumentation formatted as:
      
      Caches multi read:
      - views/david/2/4184ab71db6849621a4d8820fcd2c0ad
      - views/david/2/4184ab71db6849621a4d8820fcd2c0ad
      - views/david/3/4184ab71db6849621a4d8820fcd2c0ad
      - views/david/3/4184ab71db6849621a4d8820fcd2c0ad
      ca6aba7f
  32. 04 1月, 2015 1 次提交