This is in conjunction with my previous question Click here.
We are using berkeley DB for temporary storage before it is processed and stored into a relational DB.The problem arises when the size increases beyond a certain point.Now we have to either split the files into smaller ones or compress the existing files.In this question I want to ask the compression part,whether berkeley DB has any built in compression utility or do we have to do it programatically.If it is built in,then it will always be faster.
This is in conjunction with my previous question Click here . We are using
Share
From here:
According to the Berkeley FAQ there are two ways of optimizing it (before compression):
You can also implement your own compression algorithm as shown here.