Hi,I need to detect repetitions and updates in (relatively) small H2 tables.As such, I currently implemented using ruby and an external ORM a md5sum calculation of all the keys concatenated into a string following their natural order, which is stored back into a specific key.This involves a lot of communication with the H2 server, and I wish to have it done natively (using java itself).
(...)
--
You received this message because you are subscribed to the Google Groups "H2 Database" group.
To view this discussion on the web visit https://groups.google.com/d/msg/h2-database/-/UV44utlLiAYJ.
To post to this group, send email to h2-da...@googlegroups.com.
To unsubscribe from this group, send email to h2-database...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
To unsubscribe from this group, send email to h2-database+unsubscribe@googlegroups.com.
Hi Steve,yes, after x millions of records, it would be nice to have the checksum taking minimal space.
--
You received this message because you are subscribed to the Google Groups "H2 Database" group.
To post to this group, send email to h2-da...@googlegroups.com.
To unsubscribe from this group, send email to h2-database...@googlegroups.com.
As mentioned, I was already looking at byte arrays, therefore I was
implying I was already using BINARY(16) for md5sum.
It now works and gives decent runtime performance, while saving more
than 200MB on my 2GB+ H2 database.
Thanks.
Christian