• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Is anyone using an object database?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Is anyone using an object database?


  • Subject: Is anyone using an object database?
  • From: Philip Riggs <email@hidden>
  • Date: Fri, 25 Jun 2004 09:06:47 -0600

Is anyone using an object database? I have used several relational
databases, but for this particular problem an object database seems a
better fit. Can you recommend one for Cocoa applications? Can you
relate your experiences setting up and using them?

I want something to store and access large numbers of objects (some
datasets might be > 2,000,000) based on Guibas and Stolfi's Quad-Edge
data structure. Here are my current structures:

@interface PRPoint : NSObject {
int pointId;
double x, y, z;
}

@interface PRQuadEdge : NSObject {
int edgeId;
PRQuadEdge *oNext, *oPrevious, *dNext, *dPrevious;
PRPoint *origin, *destination;
int leftFace, rightFace;
}

Thanks for any info.
Philip
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.


  • Follow-Ups:
    • Re: Is anyone using an object database?
      • From: Vincent Coetzee <email@hidden>
  • Prev by Date: Re: Best way to find memory leaks
  • Next by Date: Re: Web Kit
  • Previous by thread: Re: Best way to find memory leaks
  • Next by thread: Re: Is anyone using an object database?
  • Index(es):
    • Date
    • Thread