Open hschreiber opened 2 weeks ago
Would the same templatization make sense for Vector_column? Maybe it does but you consider that class useless?
It makes indeed also sense for Vector_column. It's just that Vector_column only works better when a lot of entries are manually cleared inside the column, which for now only happens during vineyard with RU. And in that case, the small vector do not seem to make things much better. At least in multipersistence. And I am wondering a bit, if the class is not indeed useless as you say, as using a set kind of works better in that particular case anyway...
Replacing
std::vector
withboost::container::small_vector
inNaive_vector_column
showed some run time improvements on some particular use cases in multipers. So I added the possibility in the column choices.