Giter Site home page Giter Site logo

Comments (3)

jansupol avatar jansupol commented on July 18, 2024

The reason for filing the issue was not performance related at the beginning, the problem was that Jersey did not build on Windows. The issue showed the reason, Paths.get(MyTest.class.getResource("").getPath()); failed there and new File() fixes that.

The performance degradation comes from the additional operations the new File performs. getResource("").getPath() starts with /<drive>: and the linux-root slash at the beginning is normalized by new File(). But the NIO does not understand that linux-root slash on Windows.

from jersey.

AlanBateman avatar AlanBateman commented on July 18, 2024

The reason for filing the issue was not performance related at the beginning, the problem was that Jersey did not build on Windows. The issue showed the reason, Paths.get(MyTest.class.getResource("").getPath()); failed there and new File() fixes that.

Hopefully it is clear now that MyTest.class.getResource("").getPath() returns the path component of the URL, it's not a file path.

The performance degradation comes from the additional operations the new File performs. getResource("").getPath() starts with /: and the linux-root slash at the beginning is normalized by new File(). But the NIO does not understand that linux-root slash on Windows.

On Windows, the new implementation will of course convert forward slashes to back slashes, the issue I think you are running into seems to be "/C:/" which comes about from treating the URL path component as a file path.

from jersey.

mkarg avatar mkarg commented on July 18, 2024

@jansupol I would propose that I set up a test environment so I can check Alan's ideas. Regarding performance I do not see where this is in the critical path. Do you have a pointer for me where performance plays a role here, so I keep checking that special case then?

from jersey.

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.