Git Product home page Git Product logo

Comments (2)

romshark avatar romshark commented on June 10, 2024

It does make sense, but I'm not yet sure, how to implement it, because there's three options:

  • Setting the limit globally at server initialization affecting all clients.
  • Setting the limit individually for each client during connection establishment.
  • Setting a default global limit at server intialization, which is overridable by individual limits set during connection establishment.

The second option seems to be the most flexible one, this might be done in the BeforeUpgrade hook like so:

func (srv *ServerImplementation) BeforeUpgrade(
  resp http.ResponseWriter,
  req *http.Request,
) bool, uint {
  // accept connection, limit concurrency to max 5
  return true, 5
}

Returning 0 would mean unlimited concurrency for this individual client.

from webwire-go.

romshark avatar romshark commented on June 10, 2024

The concurrency limit is now set in the BeforeUpgrade hook this way:

func (srv *ServerImpl) BeforeUpgrade(
	resp http.ResponseWriter,
	req *http.Request,
) wwr.ConnectionOptions {
	// return wwr.AcceptConnection(wwr.UnlimitedConcurrency)
	return wwr.AcceptConnection(10) // max 10 concurrent handlers
}

The server option MaxConcurrentHandlers is no longer available. If you still want to limit the total number of concurrent handlers for the entire server you'll need to set appropriate per-client limits (say 10 for a total 10.000 maximum concurently executed handlers for 1.000 concurrent clients) and limit the number of clients by atomically counting the number of connected clients and rejecting or redirecting incoming connections in the BeforeUpgrade hook when the limit is reached.

from webwire-go.

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.