added object_cache and test

This commit is contained in:
2026-02-22 22:36:42 +01:00
parent a2c5bca709
commit e45c38b229
9 changed files with 668 additions and 9 deletions
+1
View File
@@ -123,6 +123,7 @@ add_library(matador-core STATIC
../../include/matador/object/collection_utils.hpp
object/collection_utils.cpp
../../include/matador/object/pk_field_locator.hpp
../../include/matador/object/object_cache.hpp
)
target_link_libraries(matador-core ${CMAKE_DL_LIBS})
@@ -39,10 +39,6 @@ void identifier_to_value_converter::serialize(uint64_t &x, const field_attribute
value_ = x;
}
void identifier_to_value_converter::serialize(const char *x, const field_attributes &) {
value_ = x;
}
void identifier_to_value_converter::serialize(std::string &x, const field_attributes &) {
value_ = x;
}