Skip to content
  1. May 21, 2020
    • ReinUsesLisp's avatar
      buffer_cache: Use boost::intrusive::set for caching · 89123612
      ReinUsesLisp authored
      Instead of using boost::icl::interval_map for caching, use
      boost::intrusive::set. interval_map is intended as a container where the
      keys can overlap with one another; we don't need this for caching
      buffers and a std::set-like data structure that allows us to search with
      lower_bound is enough.
      89123612
    • ReinUsesLisp's avatar
      buffer_cache: Remove shared pointers · 3b0baf74
      ReinUsesLisp authored
      Removing shared pointers is a first step to be able to use intrusive
      objects and keep allocations close to one another in memory.
      3b0baf74
    • ReinUsesLisp's avatar
      buffer_cache: Minor style changes · 599274e3
      ReinUsesLisp authored
      Minor style changes. Mostly done so I avoid editing it while doing other
      changes.
      599274e3
  2. May 19, 2020
  3. May 16, 2020
  4. May 15, 2020
  5. May 14, 2020
  6. May 13, 2020
  7. May 12, 2020
  8. May 11, 2020
  9. May 10, 2020
  10. May 09, 2020
Loading