db4o Developer Community

db4o open source object database, native to Java and .NET
Welcome to db4o Developer Community Sign in | Join
in Search
More Search Options

Browse by Tags

All Tags » Index   (RSS)
Showing page 1 of 2 (11 total posts)
  • Is there a way to index automatic properties in c#?

    Hi! The ones defined without a backing field: public SomeProperty {get; set;} Goran
    Posted to db4o User Forum (Forum) by Goran on October 7, 2008
  • Solution of ID increment (come discuss my suggestion)

    I was going thru some of this stuff, but I'd found no answer for auto-increment on db4o-tutorial, so here's what I came up with, I'd really enjoy if you guys would give your points of view about it... Simple OO stuff, let's make a SuperEntity abstract class..I'm using C# for it.  using Db4o; public abstract class SuperEntity { } ...
    Posted to db4o User Forum (Forum) by tapgyn on April 12, 2008
  • question about indexes

    I have a big database (300MB) with no indexes. Millions of object. As of today i configured db4o to use indexes for certain fileds in my class. Will these indexes propagate to the old objects in the DB, or they will start working just for the new ones? I am not very clear on this aspect. I still do not see major performance improvement in my ...
    Posted to db4o User Forum (Forum) by orrego on June 20, 2007
  • Terrible performance with a uniqueness constraint/check

    I'm playing around with db4o to see if I can use if for future projects. I have created a simple application with one entity to store. The entity has a string data member that I require to be unique. I will always retrieve objects based on this data member thus I removed the class index and and defined a new one for the data ...
    Posted to db4o User Forum (Forum) by exyll on May 27, 2007
  • Re: slow retrieving data from sample

    > To do this, call the following two lines *before* you call > > fillUpDB() > Db4o.configure().objectClass(Car.class).objectField(''pilot'').indexed(true); > Db4o.configure().objectClass(Pilot.class).objectField(''points'').indexed(true); Carl,  thanks for tip. Unfortunately it doesn't work. Result is forever ...
    Posted to db4o User Forum (Forum) by Jan Chodura on May 23, 2007
  • Re: slow retrieving data from sample

    Thank you Carl, > If you want to measure the difference between indexed > queries and non-indexed queries in one app, you should > test storing and retrieving objects of different classes. I cut the example to only one searching method - fullIndex: import java.io.File;import com.db4o.Db4o;import com.db4o.ObjectContainer;import ...
    Posted to db4o User Forum (Forum) by Jan Chodura on May 22, 2007
  • indexed or not?

    Hello guys,I'm using db4o6.1 + JDK1.5.0_09 + Windows2000.I have a data object ''Book'', the codes as the follows,public class Book {    private long bookId = 0;    private String isbn = null;    private String title = null;    private String author = null;    private String ...
    Posted to db4o User Forum (Forum) by jiangshachina on March 6, 2007
  • index not shown in ObjectManager 6.0?

    I use db4o.net 6.0 for net 1.1 and ObjectManager 6.0 I have some indexed properties, but ObjectManager shows this fields as indexed false  Is this an error in ObjectManager?
    Posted to db4o User Forum (Forum) by lytico on December 13, 2006
  • Re: index inheritance & Master/Detail relationships

    moamoa:I have a number of utility classes that work on objects that extends my IdName class. Therefore I want the objects I store to extend this class in order to be able to use my utility classes on them. It seems that if I want to use an index on the ''id'' member it can not be inherited and must be declared explicitly in each class. This then ...
    Posted to db4o User Forum (Forum) by Patrick Roemer on October 29, 2006
  • Re: index inheritance

    moamoa:public abstract class IdName {     public int id;     public String name;        } and public class Supplier //extends IdName {     public int id;     public String name;            ...
    Posted to db4o User Forum (Forum) by Patrick Roemer on October 28, 2006
1 2 Next >