GithubHelp home page GithubHelp logo

Comments (4)

highlyunavailable avatar highlyunavailable commented on July 26, 2024 1

I'm going off of a previous issue with this same behavior: #66

As I said in that issue, typical network performance for both .NET and .NET Core is around what you're seeing in the .net 4.5 test there, and all of the operations that this software does during testing all complete in a very short period (usually 1-2ms) as well on both .NET Core and .NET 4.5. Typically network performance issues are caused by things on the developer's machine, since this uses the standard .NET networking APIs.

The reason .NET 4.5 and .NET Core differ I can only guess at, but I will say that there are differences in how they configure system proxies etc. and that probably one is picking up a proxy while the other isn't.

You may want to try to configure your ConsulClient like this as a test:

var _consul = new ConsulClient(
    config => config.Address = new Uri("http://172.18.70.71:8500"),
    null,
    h => { h.UseProxy = false; h.Proxy = null; });

I also suggest starting a local Consul server as described in the README and seeing if the performance issues persist when using this API against the server running on localhost.

from consuldotnet.

highlyunavailable avatar highlyunavailable commented on July 26, 2024

from consuldotnet.

vincentshow avatar vincentshow commented on July 26, 2024

My network setting is controlled at company level. There should not have proxy as I know. Even though there is proxy, why the operations are fast in .net framework 4.5?

from consuldotnet.

vincentshow avatar vincentshow commented on July 26, 2024

You are right. Thanks.

from consuldotnet.

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.