Open
Description
Hi,
The member function hazelcast::client::imap::put_all
is constrained to use a std::underdered_map
as the input values. The user might want to use a more cache-friendly alternative, like boost::unordered_flat_map
or std::flat_map
, or maybe a std::vector<std::pair<...>>
for some specific reasons.
Question:
Could I add such template put_all
support? I could implement that and submit a PR, but I need any confirmation from anybody responsible for this repo, that it would actually make sense and there are people here that would review and be interested in merging it, so that my time is not actually wasted :)
Best regards,
Łukasz