Code Monkey home page Code Monkey logo

Comments (4)

benblack86 avatar benblack86 commented on June 21, 2024

Does the http spec say these headers can only appear once?

from colossus.

benblack86 avatar benblack86 commented on June 21, 2024

If I read the spec correctly, it does not say that certain headers can only appear once. In fact the content-type exampled showed two values (separated by comma).

There doesn't seem to be a preference between whether the same field should result in a comma separated listed or just repeated. Either way, it should behave the same. Currently headers is a list, but we could change it to a map of string to list, which would make look up quicker. Maybe we should do that for performance reasons?

from colossus.

DanSimon avatar DanSimon commented on June 21, 2024

Headers used to be a Map[String, Seq[String]], but maps (and basically all scala collections) are unfortunately very slow. I would advise not moving away from the Java List, as last time I benchmarked it was significantly faster than everything else.

I don't think I benchmarked lookup time, but honestly I wouldn't be surprised if scanning the list is still faster than a map lookup. Of course we're talking about an O(n) vs an O(1) operation, but I think you'd need to have a lot of headers for that to actually become significant. But don't take my word for it, definitely would be nice to get some documented numbers on it. Maybe a java HashMap would work.

from colossus.

benblack86 avatar benblack86 commented on June 21, 2024

I don't think there is any critical need to change this at the moment. At the very least it might make sense to wait for the new scala collections to come out. Once we get better at the habit of benchmarking we can look at this again. Closing for now.

from colossus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.