zxj

Results 42 issues of zxj

The code generated by the macro has no intellitense,will add macro for RLS?

just like the tokio's code see this tokio's time mod. ``` rust mod delay; pub use delay::{delay_for, delay_until, Delay}; ``` when need call the pub use method 'delay_for' we write...

have benchmarks in www.techempower.com ? https://www.techempower.com/benchmarks/#section=data-r18

benchmarking
v1.x

In my tests, use tokio-current_thread_runtime(), tonic Grpc Performance and QPS can be improved by at double performance。(test by [ghz](https://github.com/bojand/ghz) benchmark) can you add an option feature to support current_thread_runtime( just...

C-question

**EDIT @alexmercerind:** Add video playback & library support for both local media & other services like YouTube etc. **Old comment:** is it will be support Video play?

improvement
not urgent

i need use an Map struct,Which one should I use。 the Map struct must impl Sync and Send,and do not use '&mut self' just like SegQueue

question

There is no benchmark Compared to tokio and async_std?

**Is your feature request related to a problem? Please describe.** In some scenarios, task theft is not necessary, such as nginx, where task theft simply adds unnecessary locking overhead。 There...

A-tokio
M-runtime
C-feature-request

``` rust #[tokio::main] async fn main() { // application comes here println!("id = {:?}", task::current().id()); } ``` ``` thread 'main' panicked at '`task::current()` called outside the context of a task',...

A-tokio
M-runtime
C-feature-request

will add dependency injection future? same like : ```rust struct Service{} impl Service{ pub fn println(); } struct Bean{ service:Option// this field is dependency injection } impl Bean{ pub fn...