-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try3 - Cache FDB #46
base: main
Are you sure you want to change the base?
Try3 - Cache FDB #46
Conversation
Thanks for contributing. |
@@ -28,18 +30,18 @@ if(NOT WIN32) | |||
set(DEPENDENCIES ${DEPENDENCIES} boost_thread boost_serialization boost_system) | |||
endif() | |||
|
|||
lib(${DEPENDENCIES}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this lib function declares new library project with dependencies enumerated in params (${DEPENDENCIES})
template < typename pageCache> | ||
|
||
class Reference : public EvictablePageCache ::future<pageCache> { | ||
using base = std::future<pageCache>;//creo que lo de abajo es lo mismo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
public:
I'll extract caching functionality into new sibling sublibrary 'storage'. |
Integrating storage component to simplify this. |
No description provided.