For the android application I'm creating I decided to use db4o for managing my persistence data. For this I have to insert a few hundred rows of a very simple object.

public class Teacher
{
    String name;
    String value;
}

I tried to insert this by inserting it as an ArrayList and by inserting it one by one. In both cases it takes about 15 seconds for inserting and 6 seconds for selecting. While using the normal SQLite of android it is done in less then a second.

The db4o documentary says that you should do some commits if you are bulk inserting but they talk about 100.000+ objects. A few hundred don't seem like a bulk to me.

I have some more complex objects that work pretty fast (a 'week' class that contains 'days' where each day has 'events').

Should I configure something for handling a few hundred rows on a fast way or is there a better alternative for persistence data than db4o. I could use SQLite but I wan't to get rid of that as it's a lot of work to update etc.

I'm opening the database as

        String path = new ContextWrapper(context).getFilesDir().getAbsolutePath();
        database = Db4oEmbedded.openFile(Db4oEmbedded.newConfiguration(), path + this.DATABASE_FILENAME);

and retrieving the list as

    public ArrayList<Teacher> getTeachers()
{
    Query query = getDatabase().query();
    query.constrain(Teacher.class);
    ObjectSet<Teacher> result = query.execute();
    return new ArrayList<Teacher>(result);
}

Software used

  • Android 2.3.4
  • HTC Desire
  • db4o 8.0.184
link|improve this question
Have you timed the inserts when you use commit as the documentation recommends? – Ted Hopp Nov 9 '11 at 18:22
use bulk inserts. – binnyb Nov 9 '11 at 18:24
I tried with doing a commit every 100 rows (there are about 600-700 rows). But these commits take each already about 2 seconds or so.. – matsjoe Nov 9 '11 at 18:43
It looks like there is something wrong here. Are you using a really slow disk or similar? – PaĆ­lo Ebermann Nov 9 '11 at 22:27
Unless my phone is very slow, what doesn't seems to be so as it works just fine with SQLite.. I might try it with the db4o database on sd card to see if that improves – matsjoe Nov 9 '11 at 22:44
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.