Skip to content

Commit

Permalink
org update.
Browse files Browse the repository at this point in the history
  • Loading branch information
tinselcity committed Sep 27, 2022
1 parent 4448f38 commit 3cabc24
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![is2-ci](https://github.com/edgioinc/is2/workflows/is2-ci/badge.svg)
![is2-ci](https://github.com/edgio/is2/workflows/is2-ci/badge.svg)

# is2
> _Event driven http(s) API server library -in C++_
Expand Down Expand Up @@ -51,7 +51,7 @@ A basic example of instantation/registration:
```
### The Reactor
`is2` has an [event system](https://github.com/edgioinc/is2/tree/master/src/evr) similar to [libevent](http://libevent.org/) or [libuv](https://libuv.org/). The reactor is a `std::priority_queue` of timer events with inverted ordering, for dequeue'ing the next nearest timeout. The "next nearest timeout" is used for the subsequent call to wait for events (`epoll_wait`, `select`, `kqueue`).
`is2` has an [event system](https://github.com/edgio/is2/tree/master/src/evr) similar to [libevent](http://libevent.org/) or [libuv](https://libuv.org/). The reactor is a `std::priority_queue` of timer events with inverted ordering, for dequeue'ing the next nearest timeout. The "next nearest timeout" is used for the subsequent call to wait for events (`epoll_wait`, `select`, `kqueue`).
Reactor loop psuedo code:
Expand Down Expand Up @@ -169,7 +169,7 @@ int main(void)
{"msg": "Hello World"}
```
#### Performance with [hurl](https://github.com/edgioinc/hurl)
#### Performance with [hurl](https://github.com/edgio/hurl)
```sh
>hurl 'http://127.0.0.1:12345/hello' -t1 -p100 -l5
Running 1 threads 100 parallel connections per thread with infinite requests per connection
Expand Down

0 comments on commit 3cabc24

Please sign in to comment.