This project is mirrored from https://github.com/coredns/coredns.git. The repository failed to update .
Repository mirroring has been paused due to too many failed attempts, and can be resumed by a project maintainer.
Last successful update .
  1. 10 May, 2018 2 commits
  2. 09 May, 2018 7 commits
  3. 08 May, 2018 1 commit
  4. 06 May, 2018 4 commits
  5. 05 May, 2018 1 commit
  6. 04 May, 2018 1 commit
  7. 03 May, 2018 1 commit
  8. 02 May, 2018 1 commit
    • Miek Gieben's avatar
      Do Compress only when need in request.Scrub (#1760) · 57352924
      Miek Gieben authored
      * Remove Compress by default
      
      Set Compress = true in Scrub only when the message doesn not fit the
      advertized buffer. Doing compression is expensive, so try to avoid it.
      
      Master vs this branch
      pkg: github.com/coredns/coredns/plugin/cache
      BenchmarkCacheResponse-2   	   50000	     24774 ns/op
      
      pkg: github.com/coredns/coredns/plugin/cache
      BenchmarkCacheResponse-2   	  100000	     21960 ns/op
      
      * and make it compile
      57352924
  9. 01 May, 2018 2 commits
  10. 28 Apr, 2018 6 commits
  11. 27 Apr, 2018 5 commits
  12. 26 Apr, 2018 6 commits
  13. 25 Apr, 2018 3 commits
    • Miek Gieben's avatar
      plugin/autopath: per server metrics (#1730) · 5c3e436d
      Miek Gieben authored
      Implement per server metrics in autopath; also don't export the metric.
      
      Updated readme as well.
      5c3e436d
    • Miek Gieben's avatar
      core: remove HostAddresses() (#1728) · d3f2d4a2
      Miek Gieben authored
      * core: remove HostAddresses()
      
      config.HostAddresses() is a weird function that gathers
      some data from the server and returns a string.
      
      It is *only* used the trace plugin, to figure out what
      server starts the trace.
      
      Looks to be better to fit in the with metrics.WithServer label
      on the trace itself to show which server handled the trace.
      
      Remove HostAddresses() and cleanup trace a small bit.:w
      
      * lint
      d3f2d4a2
    • Miek Gieben's avatar
      deprecate some stuff (#1732) · 7a507e34
      Miek Gieben authored
      https_google and reverse will be removed in 2 releases. Add warnings.
      
      We will move reverse to coredns/reverse and list it as external after
      this switch.
      
      See #1713
      7a507e34