mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
Found a few typos in the readme.
This commit is contained in:
parent
20c2f0202a
commit
84d86d8cbd
@ -7,7 +7,7 @@ It's more similar to Codeigniter 3, but of course it's still different, because
|
|||||||
Since it's a normal c++ app, lots of things can be implemented in an unusual (compared to how html frameworks work)
|
Since it's a normal c++ app, lots of things can be implemented in an unusual (compared to how html frameworks work)
|
||||||
albeit lot more efficient way. Also standard app/game like optimizations can be implemented.
|
albeit lot more efficient way. Also standard app/game like optimizations can be implemented.
|
||||||
For example it's possible to load and cache users, and only save them in a
|
For example it's possible to load and cache users, and only save them in a
|
||||||
diffrent thread when necessary (they get dirty).
|
different thread when necessary (they get dirty).
|
||||||
|
|
||||||
It's still in an experimental state, it should be expected to change a lot.
|
It's still in an experimental state, it should be expected to change a lot.
|
||||||
|
|
||||||
@ -51,7 +51,7 @@ the server's settings.
|
|||||||
|
|
||||||
The core Database class contains the api for querying database backends.
|
The core Database class contains the api for querying database backends.
|
||||||
|
|
||||||
These are the methods that backends inplement right now:
|
These are the methods that backends implement right now:
|
||||||
|
|
||||||
```
|
```
|
||||||
virtual void connect(const std::string &connection_str);
|
virtual void connect(const std::string &connection_str);
|
||||||
@ -308,7 +308,7 @@ The HTTP server will turn an http request into a `Request`, then it will call th
|
|||||||
The `handle_request` method will set up request's middleware stack, and then
|
The `handle_request` method will set up request's middleware stack, and then
|
||||||
it will call `request->next_stage();`.
|
it will call `request->next_stage();`.
|
||||||
|
|
||||||
Note: the middlware stack might be removed later, as Request now contains a pointer
|
Note: the middleware stack might be removed later, as Request now contains a pointer
|
||||||
to it's owner application.
|
to it's owner application.
|
||||||
|
|
||||||
#### Middlewares
|
#### Middlewares
|
||||||
|
Loading…
Reference in New Issue
Block a user