1. Mar 24, 2015
  2. Mar 12, 2015
  3. Mar 11, 2015
  4. Mar 07, 2015
  5. Mar 06, 2015
    • Florin-Cristian Gavrila's avatar
      http: fix performance regression for GET requests · 8bcd0a4c
      Florin-Cristian Gavrila authored
      A significant performance regressions has been introduced in 1fddc1fe for
      GET requests which send data through response.end(). The number of
      requests per second dropped to somewhere around 6% of their previous
      level.
      
      The fix consists of removing a part of the lines added by 1fddc1fe,
      lines which were supposed to affect only HEAD requests, but interfered
      with GET requests instead.
      
      The lines removed would not have affected the behaviour in the case of
      a HEAD request as this._hasBody would always be false. Therefore, they
      were not required to fix the issue reported in #8361.
      
      Fixes #8940.
      
      PR: #9026
      PR-URL: https://github.com/joyent/node/pull/9026
      
      
      Reviewed-By: default avatarJulien Gilli <julien.gilli@joyent.com>
      8bcd0a4c
  6. Mar 05, 2015
  7. Feb 18, 2015
    • Julien Gilli's avatar
      console: allow Object.prototype fields as labels · c8239c08
      Julien Gilli authored
      This is a backport of 6c3647c3 from
      v0.12 to v0.10.
      
      Console.prototype.timeEnd() returns NaN if the timer label
      corresponds to a property on Object.prototype. In v0.12, this was fixed
      by using Object.create(null) to construct the _times object
      
      However, the version of V8 in the v0.10 branch makes this fix not work
      as expected. In v0.10, this commit changes the _times object into a
      array of objects of the form:
      
      { label: someLabel, time: staringWallClockTime }
      
      someLabel can thus be any string, including any string that represents
      any Object.prototype field.
      
      Fixes #9116.
      
      PR: #9215
      PR-URL: https://github.com/joyent/node/pull/9215
      
      
      Reviewed-By: default avatarColin Ihrig <cjihrig@gmail.com>
      c8239c08
  8. Feb 10, 2015
  9. Feb 05, 2015
  10. Jan 27, 2015
  11. Jan 24, 2015
  12. Jan 22, 2015
  13. Jan 20, 2015
  14. Jan 15, 2015
  15. Jan 14, 2015
  16. Jan 13, 2015
  17. Dec 24, 2014
  18. Dec 23, 2014
  19. Dec 20, 2014
  20. Dec 18, 2014