Skip to content

Commit 4dff50b

Browse files
committed
Merge branch 'master' into develop
2 parents 9375131 + 2dbc524 commit 4dff50b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
| :no_entry: Requires to rewrite controllers to add a new<br/> technology | :white_check_mark: Requires only a new Manager class |
2626
| :no_entry: Not supporting bulk operation by default | :white_check_mark: Up to one line of code for fully functional `BULK` `API` |
2727
| :no_entry: Controller logic can't be easily used for<br/>`gRPC` or `SignalR` | :white_check_mark: You could have the same Manager to<br/> handle `REST`, `gRPC`,and a `SignalR` simultaneously |
28-
| :no_entry: Paging and Sorting should be written for<br/>every controller separately | :white_check_mark: Paging and sorting are implemented out of the box in<br/>the uniform manner |
28+
| :no_entry: Paging and Sorting should be written for<br/>every controller separately | :white_check_mark: Paging and sorting are implemented<br/> out of the box in the uniform manner |
2929

3030
## Minimal example
3131

@@ -56,8 +56,8 @@ services.AddControllers().AddApplicationPart(stationControllerAssembly).AddContr
5656

5757
![Bulk vs Non Bulk](./img/bulk_performance.png)
5858

59-
* :scream: Elapsed time in Non-Bulk REST API with EF is <span style="color:red">0.9759984016418457 secs.</span>
60-
* :fire: Elapsed time in Bulk API with EF is <span style="color:green">**0.004002094268798828 secs**.</span>
59+
* :scream: Elapsed time in Non-Bulk REST API with EF is <span style="color:red">~976 ms.</span>
60+
* :fire: Elapsed time in Bulk API with EF is <span style="color:green">**~4 ms**.</span>
6161

6262
:sparkles: Result : Bulk `API` is almost <span style="color:green">**~250 x faster**</span>!
6363

0 commit comments

Comments
 (0)