Skip to content

1) Store Ice objects in BDB and check performance

Past due by over 11 years 0% complete

Store Ice objects in BDB (BerkleyDB):

  • sequence
  • struct fixed
  • struct variable

Check performance with the following BDB configuration

  • BDB in memory
  • BDB on disk

Use Ice/Freeze service

module Demo
{

sequence ByteSeq;
const int ByteSeqSize = 128000;

sequence StringSeq;
const int StringSeqSize = 128000;

struct StringDouble
{
string s;
double d;
};
sequence S…

Store Ice objects in BDB (BerkleyDB):

  • sequence
  • struct fixed
  • struct variable

Check performance with the following BDB configuration

  • BDB in memory
  • BDB on disk

Use Ice/Freeze service

module Demo
{

sequence ByteSeq;
const int ByteSeqSize = 128000;

sequence StringSeq;
const int StringSeqSize = 128000;

struct StringDouble
{
string s;
double d;
};
sequence StringDoubleSeq;
const int StringDoubleSeqSize = 128000;

struct Fixed
{
int i;
int j;
double d;
};
sequence FixedSeq;

}

Loading