examples
examples copied to clipboard
Community showcase and examples of Actix ecosystem usage.
I'm learning about how to implement web sockets with actix and I was looking at the example linked from [here](https://actix.rs/docs/websockets/): I understand the example, it's clear and I understand everything,...
Hello guys, is there a way to use redis `subscribe/psubscribe` in actix + actix-web system? I don't want to create a seperate thread for handling this, is there a better...
This issue is to express the wish that `actix-web` get a `mysql` example Like #397 and #405 is this issue tagged _new-example_. I'm aware of _mariadb_, reason for having _mysql_...
When running this example locally everything works fine, but as soon as I change the PG.HOST=XXX.XXX.XXX.XXX to a remote postgres instance the example still trys to connect to the local...
As a cargo user, I expect to be able to run packages from a cargo workspace. 1. I ran: ```sh cargo run --bin rustls-server ``` It errored with: ```sh Running...
``` let res = redis.send(Command(resp_array!["SET", "mydomain:one", 2])).await??; ``` By following the example here. https://github.com/actix/examples/blob/master/database_interactions/redis/src/main.rs I get this: ``` ---->Error("ERR Protocol error: expected \'$\', got \':\'") ``` This seems like something...
> > Sorry, I didn't get what do you mean. I need to configure something to make it work? > > @Pzixel I was able to configure https requests by...
The `http-proxy` example seem to add 5s to every PUT requests. It seem to be due to some *unexpected keep-alive timeout*. Below is a minimal (although not short) example in...