Skip to content
#

echo

Here are 677 public repositories matching this topic...

aschiffmann
aschiffmann commented Apr 21, 2021

Checklist

  • Dependencies installed
  • No typos
  • Searched existing issues and docs

Issue Description

When using the RateLimiter Middleware with a rate between 0 and 1 all events will be rejected instead of applying the specified rate. E.g.: e.Use(middleware.RateLimiter(middleware.NewRateLimiterMemoryStore(0.5)))

I am not saying that it is a common use case to have

HeadClot
HeadClot commented Sep 26, 2020

Would it be possible to add the Origin Rebase feature that is built into Physx 4.x and up into Echo?

This would enable larger worlds to be made without floating point precision errors. Here is an example of what can happen if you are too far away from origin. https://gyazo.com/a96db2d1a4ef8ff8935d2054597e151b

It would be nice if we could enable it in project settings and it was just part of

good first issue
NEK-RA
NEK-RA commented Apr 10, 2022

Hi.
Do you plan to add any docs to this package? Or at least usage details?

I don't know, may be most starred here has enough with basic example. I got ehco working too, but it's still not fully clear to me 😞

In example, for me next things need for clarification:

  1. For each relay config there are fields:
    • listen_type
    • transport_type
      Which values here are acceptable?
enhancement help wanted good first issue
pafuent
pafuent commented Dec 15, 2020

Add documentation about how to bind multiple instances of the same query parameter to a slice.
Use this UT as a reference (if it is possible make a more real example than this 😉)

func TestBindSlices(t *testing.T) {
	e := New()
	req := httptest.NewRequest(GET, "/?str=foo&str=bar&str=foobar", nil)
	rec := httptest.NewRecorder()
	c := e.NewContext(req, rec)
	result := struct {
	

Improve this page

Add a description, image, and links to the echo topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the echo topic, visit your repo's landing page and select "manage topics."

Learn more