active questions tagged db4o - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:13:18Z http://stackoverflow.com/feeds/tag/db4o http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1914993/caching-big-children-in-data-model-with-db4o 0 Caching big children in data model with db4o Aaron Digulla 2009-12-16T14:30:43Z 2009-12-16T15:51:55Z <p>I have a data model with a skeleton (metadata) and large data objects. I'd like to keep the skeleton in memory and hold weak references to the data objects. I understand how I would implement this with plain Java, how I would create a WeakHashMap and clean up etc. But I'm wondering what would be the best way to resurrect the data objects after they have been GC'd?</p> <p>Should I add a technical key to my map which I assign to a field in the data object, so I can find it again? Or should I call db.ext().getId() and use this ID as the technical key? If so, how would I get these keys when loading the parent? What do you suggest?</p> http://stackoverflow.com/questions/1913155/can-should-i-use-weakreference-in-my-complex-object-structure-with-db4o 0 Can/should I use WeakReference in my complex object structure with db4o? Aaron Digulla 2009-12-16T08:28:55Z 2009-12-16T09:00:57Z <p>I'm considering to port an application to db4o. The data model consists of lots of small objects with a lot of references between each other. For example, I have a book which points to an author and chapter. Chapters have sections, sections have large blobs of text, images, and they reference characters mentioned.</p> <p>I think it should be possible to keep the meta structure in memory (everything except the text blobs) but I was wondering whether I could use some clever trick involving WeakReference so db4o would just keep the part of the model in memory that I really need (i.e. which I've been using recently).</p> <p>The same is true for the text blobs (which should be around 1-10KB). Is it possible to get a String without having to worry about the DB layer and without having to query for the text blob using an artificial ID inside the getter and without using a hard reference which keeps the whole text in memory all the time?</p> http://stackoverflow.com/questions/1912816/db4o-mvc-index-page-to-detail-page 1 db4o mvc index page to detail page davidinbcn 2009-12-16T06:59:17Z 2009-12-16T07:20:56Z <p>Hi, in a MVC application it is quite common to have a list of objects that you click to see detail and / or edit. When using a relational db, this is achieved by using the primary key or id:</p> <pre><code>&lt;%= Html.ActionLink(dinner.Title, "Details", new { id=dinner.DinnerID }) %&gt; </code></pre> <p>How would you do this using an oodb such as db4o?</p> <p>Thanks!</p> http://stackoverflow.com/questions/928597/trouble-with-db4o-objects-arent-returned-after-an-iis-reset-container-is-out-o 1 Trouble with db4o...objects aren't returned after an IIS reset/container is out of scope. JC Grubbs 2009-05-30T00:00:55Z 2009-12-10T07:00:04Z <p>So I'm probably doing something tragically wrong with db4o to cause this issue to happen...but every time I reset my context I lose all of my objects. What I mean by this is that as soon as my container object goes out of scope (due to an IIS reset or whatever) I can no longer retrieve any of the objects that I previously persisted. Within the scope of a "session" I can retrieve everything but as soon as that "session" dies then nothing is returned. What's odd is that the database file continues to grow in size so I know everything is in there it just never gets returned after the fact. Any idea what's going on?</p> <p>Here is my generic wrapper for db4o:</p> <pre><code>public class DataStore : IDisposable { private static readonly object serverLock = new object(); private static readonly object containerLock = new object(); private static IObjectServer server; private static IObjectContainer container; private static IObjectServer Server { get { lock (serverLock) { if (server == null) server = Db4oFactory.OpenServer(ConfigurationManager.AppSettings["DatabaseFilePath"], 0); return server; } } } private static IObjectContainer Container { get { lock (containerLock) { if (container == null) container = Server.OpenClient(); return container; } } } public IQueryable&lt;T&gt; Find&lt;T&gt;(Func&lt;T, bool&gt; predicate) { return (from T t in Container where predicate(t) select t).AsQueryable(); } public IQueryable&lt;T&gt; Find&lt;T&gt;() { return (from T t in Container select t).AsQueryable(); } public ValidationResult Save(IValidatable item) { var validationResult = item.Validate(); if (!validationResult.IsValid) return validationResult; Container.Store(item); return validationResult; } public void Delete(object item) { Container.Delete(item); } public void Dispose() { Server.Close(); Container.Close(); } } </code></pre> http://stackoverflow.com/questions/1870648/maintaining-backwards-compatibility-with-my-object-database 1 Maintaining backwards compatibility with my object database? GordonG 2009-12-08T23:36:05Z 2009-12-09T00:12:18Z <p>I am writing an application using an object database (<a href="http://www.db4o.com/" rel="nofollow">db4o</a>) and in agile fashion will be starting from a small, minimal implementation and iteratively adding features from there, while releasing new versions of the software as I go.</p> <p>The main question I have is how to maintain backwards compatibility for the database, as new implementations of the model classes are developed, so that users will be able to use first edition saved data with 10th edition software.</p> <p>Are there some standard ways to do this, especially using an object database?</p> http://stackoverflow.com/questions/1860150/am-i-wrong-in-wanting-to-roll-my-own-authenticate-authorize-system-given-the-fo 0 Am I wrong in wanting to roll my own Authenticate / Authorize system given the following requirements? boris callens 2009-12-07T14:00:39Z 2009-12-07T14:57:10Z <p>In my pet project I want to have a user system with the following requirements:</p> <ul> <li>It needs to work with <a href="http://www.db4o.com/" rel="nofollow">Db4o</a> as a persistance model</li> <li>I want to use DI (by means of <a href="http://mvcturbine.codeplex.com/" rel="nofollow">Turbine</a>) to deliver the needed dependencies to my user model</li> <li>It needs to be easy to plug in to asp.net-mvc</li> <li>It needs to be testable without much hassle</li> <li>It needs to support anonymous users much like SO does</li> <li>I want Authentication and Authorization separated (the first can live without the second)</li> <li>It needs to be safe</li> </ul> <p>I'm aware I'm putting a few technologies before functionalities here, but as it is a pet project and I want to learn some new stuff I think it is reasonable to include them as requirements.</p> <p>Halfway in rolling my own I realized I am probably suffering some <a href="http://en.wikipedia.org/wiki/Not%5FInvented%5FHere" rel="nofollow">NIH</a> syndrome.<br> As I don't really like how needlessly complex the existing user framework in asp.net is, it is actually mostly only all the more complicated stuff regarding security that's now giving me some doubts. Would it be defendable to go on and roll my own? If not how would you go about fulfilling all the above requirements with the existing IPrinciple based framework?</p> http://stackoverflow.com/questions/1839241/turbine-with-db4objects-db4o-linq-dll-gives-unable-to-load-one-or-more-of-the-req 0 Turbine with Db4objects.Db4o.Linq.dll gives Unable to load one or more of the requested types exception boris callens 2009-12-03T11:04:57Z 2009-12-06T06:13:40Z <p>In my asp.net-mvc application I'm trying to set up Turbine.<br> The initialization code goes as follows:</p> <pre><code>public class MvcApplication : TurbineApplication { static MvcApplication() { ServiceLocatorManager.SetLocatorProvider(() =&gt; new UnityServiceLocator()); } } </code></pre> and I have then a set of registrars comparable to the following one: <pre><code>public class UserRepositoryRegistration : IServiceRegistration { public void Register(IServiceLocator locator) { locator.Register&lt;IUserRepository, Db4oUserRepository&gt;(); } } </code></pre> If I try to run, I get the following error somewhere after the SetLocatorProvider, but before entering any of the register methods: <blockquote> <p>Server Error in '/' Application.</p> <p>Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. </p> <p>Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p> <p>Exception Details: System.Reflection.ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.</p> <p>Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. </p> <p>Stack Trace: </p> <pre> [ReflectionTypeLoadException: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.] System.Reflection.Module._GetTypesInternal(StackCrawlMark& stackMark) +0 System.Reflection.Assembly.GetTypes() +105 MvcTurbine.ComponentModel.DefaultAutoRegistrator.AutoRegister(ServiceRegistration serviceRegistration) +338 MvcTurbine.Web.RotorContext.ProcessAutomaticRegistration(AutoRegistrationList registrationList) +155 MvcTurbine.Web.RotorContext.AutoRegistrationForContext() +163 MvcTurbine.Web.RotorContext.Turn() +37 MvcTurbine.Web.TurbineApplication.ExecuteContext() +43 MvcTurbine.Web.TurbineApplication.TurnRotor() +65 MvcTurbine.Web.TurbineApplication.Application_Start(Object sender, EventArgs e) +85 </pre> <p></blockquote></p> <p><strong>UPDATE</strong><br> Narrowed down the problem library to Db4objects.Db4o.Linq.dll As soon as I have this library as a references (not even "using", just added to references) in one of my libraries that is referenced in my mvc webapplication I get the above mentioned YSOD. All other Db4o libraries work just fine.</p> <p><strong>METTRE À JOUR</strong><br> Tried swapping the UnityServiceLocator with the WindsosServiceLocator and the NinjectServiceLocator. Exact same results, so more then likely the problem doesn't originate in either of the libs.</p> <p><strong>OPPDATERING</strong><br> To recreate the error page it suffices to take the following steps:</p> <ul> <li>Create new Mvc application (doesn't matter wat version)</li> <li>Alter gloabal.asax.cs code to use MvcTurbine and add needed MvcTurbine libs<br> You will find everything still works as expected</li> <li>Add Db4objects.Db4o.dll<br> Still everything works</li> <li>Add Db4objects.Db4o.linq.dll<br> YSOD</li> </ul> <p>Any ideas on where and how to debug this?</p> http://stackoverflow.com/questions/1616341/db4o-can-i-save-a-string 1 Db4O - Can I save a String? Miguel Ping 2009-10-23T22:58:32Z 2009-12-04T05:22:24Z <p>I have the following code:</p> <pre><code> Assert.IsTrue(Repository.FindAll&lt;string&gt;().Count() == 0); string newString = "New String"; Repository.Save(newString); Assert.IsTrue(Repository.FindAll&lt;string&gt;().Count() == 1); </code></pre> <p>But it is failing. I suppose it has something to do with the fact that I'm saving a string.</p> <p>My Save() code is this:</p> <pre><code> public void Save&lt;T&gt;(T obj) { if (obj == null) throw new ArgumentNullException("obj not allowed to be null"); Db.Store(obj); Db.Commit(); } </code></pre> <p>Should my persistent classes have something special? Or I can just save pretty much anything with db4o?</p> http://stackoverflow.com/questions/1826431/lambda-syntax-in-linq-to-db4o 1 Lambda syntax in linq to db4o? boris callens 2009-12-01T14:12:43Z 2009-12-01T14:42:47Z <p>I know the following is possible with linq2db4o</p> <pre><code>from Apple a in db where a.Color.Equals(Colors.Green) select a </code></pre> <p>What I need however is something that allows me to build my query conditionally (like I can in other linq variants)</p> <pre><code>public IEnumerable&lt;Apple&gt; SearchApples (AppleSearchbag bag){ var q = db.Apples; if(bag.Color != null){ q = q.Where(a=&gt;a.Color.Equals(bag.Color)); } return q.AsEnumerable(); } </code></pre> <p>In a real world situation the searchbag will hold many properties and building a giant if-tree that catches all possible combinations of filled in properties would be madman's work.</p> <p>It is possible to first call</p> <pre><code>var q = (from Color c in db select c); </code></pre> <p>and then continue from there. but this is not exactly what I'm looking for.</p> <p>Disclaimer: near duplicate of <a href="http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query">my question</a> of nearly 11 months ago.<br> This one's a bit more clear as I understand the matter better now and I hope by now some of the db4o dev eyes could catch this on this:</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1597488/client-server-assembly-missing-db4objects-7-4 0 Client Server Assembly Missing? Db4Objects 7.4 Tim Jarvis 2009-10-20T21:37:52Z 2009-11-15T14:00:04Z <p>I have downloaded the current version of <a href="http://developer.db4o.com/files/folders/db4o%5F74/default.aspx" rel="nofollow">Db4Objects</a> (7.4) and installed it. It appears to be missing the Client Server assembly Db4objects.Db4o.CS.dll</p> <p>Does anyone know if Client Server has changed with this version? If it has, does anyone have some details about creating a simple Server?</p> http://stackoverflow.com/questions/1620355/a-few-questions-about-working-with-db4o 2 A few questions about working with db4o Max 2009-10-25T08:26:52Z 2009-11-12T23:20:24Z <p>I am trying the db4o object databse and so far I quite like what I am seeing, but I also read this post on stackoverflow <a href="http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499">http://stackoverflow.com/questions/21207/db4o-experiences/24499#24499</a> indicating that not everything that seems so easy is easy. </p> <p>Right now, I have some questions regarding on how db4o is used in real world apps. So if you have any experience in working (especially in web app context) with db4o, I would love to hear them.</p> <p>Here are my questions:</p> <p><strong>How do you manage object identity when working with db4o stored objects?</strong><br /> Coming from RDBMS background where you normally always have a primary key / identity column for every table, I cant imagine right now on how to manage object identity in db4o. </p> <p>For example, if I was working with NHibernate / mysql and needed to find a User object by id, I would do session.Load(primaryKey) and it will be retrieved by its PK. It is also very common that the PK is defined as auto increment in the table definition. </p> <p>As there is no such option in db4o, my thought was using a Guid struct in order to identify some objects in the object database. </p> <p><strong>Any tools to view the stored objects in the db?</strong><br /> Is there something like SQL Server Management Studio (probably less sophisticated) in the db4o world? I would like to view the already stored data / objects in the db file.</p> <p><strong>Are you screwed when renaming your domain objects?</strong><br /> As far as I know when you rename a class, any previously stored instances in the db cannot be retrieved anymore. Is there a way to work around this issue? How do you deal with updates against a live database which already contains many objects?</p> <p><hr /></p> <p>EDIT:</p> <p>I almost forgot this one:</p> <p><strong>Can I exclude properties from being saved to the DB?</strong><br /> If for example one domain object holds a reference to a (stateless) service object, then the service object will also be persisted if the domain object gets persisted, right? </p> <p>It seems a bit odd to have a service instace saved in the database, at least to me. Can you exclude the service instance from being saved? But if the domain object is retrieved again, how can I make sure that the service is also injected in the instance again?</p> http://stackoverflow.com/questions/1689089/db4o-query-find-all-objects-with-id-anything-in-array 2 Db4o query: find all objects with ID = {anything in array} Judah Himango 2009-11-06T17:29:05Z 2009-11-12T22:24:12Z <p>I've stored 30,000 SimpleObjects in my database:</p> <pre><code>class SimpleObject { public int Id { get; set; } } </code></pre> <p>I want to run a query on DB4O that finds all SimpleObjects with any of the specified IDs:</p> <pre><code>public IEnumerable&lt;SimpleObject&gt; GetMatches(int[] matchingIds) { // OH NOOOOOOES! This activates all 30,000 SimpleObjects. TOO SLOW! var query = from SimpleObject simple in db join id in matchingIds on simple.Id equals id select simple; return query.ToArray(); } </code></pre> <p>How do I write this query so that DB4O doesn't activate all 30,000 objects?</p> http://stackoverflow.com/questions/1704416/can-you-recommend-a-good-resource-for-configuring-db40-on-mono-open-suse 0 Can you recommend a good resource for configuring db40 on Mono / Open SUSE? David Robbins 2009-11-09T22:35:28Z 2009-11-09T22:35:28Z <p>The db40 forums seem to have sparse activity. I am seeking a blog post, article, or your input on how you installed and configured db40 for Mono on the Open SUSE / Ubuntu platform. I am a Linux n00b and anything you can provide would help greatly.</p> http://stackoverflow.com/questions/1662150/is-using-db4o-for-web-sites-a-judicious-choice 3 Is Using Db4o For Web Sites a judicious choice? Yoann. B 2009-11-02T16:01:09Z 2009-11-03T19:03:55Z <p>Is using Db4o as a backend datastore for a Web site (ASP.NET MVC) a judicious choice as an alternative to MS SQL Server ?</p> http://stackoverflow.com/questions/1381213/db4o-object-update 1 Db4o object update Miguel Ping 2009-09-04T19:48:51Z 2009-10-23T10:00:03Z <p>Hi,</p> <p>I'm using db4o for a simple app, with an embedded db. When I save an object, and then change the object, is it suppose that db4o returns the changed object?</p> <p>Here's the code:</p> <pre><code>[Test] public void NonReferenceTest() { Aim localAim = new Aim("local description", null); dao.Save(localAim); // changing the local value should not alter what we put into the dao localAim.Description = "changed the description"; IQueryable&lt;Aim&gt; aims = dao.FindAll(); var localAim2 = new Aim("local description", null); Assert.AreEqual(localAim2, aims.First()); } </code></pre> <p>The test fails. Do I need to setup the db4o container in any special way? wrap it in commit calls? Thanks</p> http://stackoverflow.com/questions/911166/db4o-to-preserve-identity-of-objects 0 db4o to preserve identity of objects. lbownik 2009-05-26T15:03:02Z 2009-10-13T11:07:33Z <p>Is there a way to preserve an objest identity in db4o.</p> <p>Suppose I store a BigDecimal in embedded db4o.</p> <p>When I read it twice I get two distict objects with the same value (which is quite obvious).</p> <p>Is there any setting to force db4o to cashe query sersults so that two querries would return reference to the same instance, or do I have to do it myself ?</p> http://stackoverflow.com/questions/1329860/db4o-with-silverlight-ria-services 0 DB4O with Silverlight RIA Services Charles 2009-08-25T17:50:17Z 2009-10-13T11:05:49Z <p>Hello,</p> <p>I've considered using the db4o OODBMS with a recent Silverlight / RIA Services project, but there's one point that I could use some advice on - how to make associations work. RIA Services requires that you mark all of your associated entities with an AssociationAttribute. The AssociationAttribute's constructer requires that you specify your entity's key to the associated entity, and the key of the associated entity itself.</p> <p>As an example, imagine that I have a Racer class with CarID and Car properties, and a Car class with an ID property. My Racer class would look something like this:</p> <pre><code>class Racer { public int ID { get; set; } public int? CarID { get; set; } [Association("Racer_Car", "CarID", "ID")] public Car Car { get; set; } } </code></pre> <p>The problem that I see with using db4o (or any OODBMS) is that foreign keys and primary keys do not, and need not, exist - and the result is that I wouldn't need the Racer.CarID and Car.ID properties. To make this work with RIA Services, I would need to create my own unique keys, which I don't mind, I just don't know the best way to go about doing so.</p> <p>So my question for you is "how would you create these keys/IDs"?</p> <p>Since there isn't any concept of an auto incrementing generated field (none that I'm aware of any way), I would have to choose between trying to manually, safely increment the keys, or use something like a Guid. Since the former would be more difficult to manage with multiple users and/or multithreading, I'd imagine that using a Guid would be the simplest solution.</p> <p>So let's consider using a Guid. The easiest solution would be to create my ID properties, just as I had within the example above, but use a Guid instead of int. I would need to set the ID to a new Guid after creating new entities - then, whenever I set the the Racer.Car property, I would also need to set the Racer.CarID.</p> <p>Doing that by hand would be prone to error, so I'd want a lot of that handled in the property getters and setters, but I'm not sure of the best way to implement that. <br> <br> <br> That's what I've thought of so far. I think I'll look into how the Linq-to-SQL generated code handles some of these concerns - maybe I'll find a clue there. </p> <p>Any suggestions would be greatly appreciated.</p> <p>Thanks,<br> -Charles</p> http://stackoverflow.com/questions/1363590/improve-db4o-linq-query 1 Improve db4o linq query tanascius 2009-09-01T17:07:02Z 2009-10-13T10:50:59Z <p>Hello,</p> <p>I got a problem with this linq query:</p> <pre><code>from PersistedFileInfo fi in m_Database from PersistedCommit commit in m_Database where commit.FileIDs.Contains( fi.ID ) where fi.Path == &lt;given path&gt; select new Commit( m_Storage, commit ); </code></pre> <p>As you can see, every <code>PersistedCommit</code> contains a <code>Collection&lt;int&gt;</code> called <code>FileIDs</code> which connects it to its <code>PersistedFileInfo</code>s. I want to select all previous commits of a specific fileInfo (which is identified by its path).</p> <p>I have about 800 <code>PersistedFileInfo</code>s and 10 <code>PersistedCommit</code>s. The query takes about 1.5 seconds - which is in my opition far too long. The contructor of the <code>Commit</code>-object saves only the two given arguments - so there is no timeloss, here.</p> <p>My question:<br /> Can this query be rewritten to perform better - or is it a db4o problem (use a SODA query instead)?</p> http://stackoverflow.com/questions/434284/db4o-concerns 2 db4o concerns Allain Lalonde 2009-01-12T02:47:06Z 2009-09-27T20:16:39Z <p>I'm interested in using db4o as my persistence mechanism in my Desktop application but I'm concerned about a couple things.</p> <p><strong>1st concern: Accidentally clipping very complex object graphs.</strong> </p> <p>Say I have a tree with a height of 10 and I fetch the root, how does it handle me storing the root object again?</p> <p>From my understanding, it doesn't fetch the entire tree it fetches the first 5 referenced layers. </p> <p>So.. If I make a trivial change to the root and then store it, will it clip away the nodes further down the tree, in essence deleting them. </p> <p>If not.. how does it handle this?</p> <p><strong>2nd concern: Extracting subgraphs in a larger object graph</strong></p> <p>Using my tree example from above... If the database contains 1 massive tree can I query for a single node within it? Since <code>.store</code> was called only once, does my database think it contains only 1 <em>"record"</em>?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment 0 db4o running in asp.net Medium Trust environment bbqchickenrobot 2009-06-29T09:04:46Z 2009-09-22T15:00:06Z <p>I am using the embedded client/server version of db4o (I called OpenServer() instead of OpenFile() method) so that I can host an asp.net website that will have several users reading and writing to the database simultaneously. The only issue is that the webhost that we use is a medium trust environment so it's throwing an error stating that the assembly doesn't support partially trusted callers... </p> <p>Wondering if anyone has any suggestions on how to get this to work. Thanks! </p> <p>:: UPDATE :: </p> <p>I have recompiled the db4o dll with the [AllowPartiallyTrustedCallers] attribute and now I am getting the following specific error: </p> <p>System.TypeInitializationException was unhandled by user code Message="The type initializer for 'DataObjecten.db4oManager' threw an exception." TypeName="DataObjecten.db4oManager" InnerException: System.Security.SecurityException Message="Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed." Source="Db4objects.Db4o" StackTrace: at Db4objects.Db4o.Internal.Platform4.AddShutDownHook(PartialObjectContainer container) at Db4objects.Db4o.Internal.PartialObjectContainer.Initialize1(IConfiguration config) at Db4objects.Db4o.Internal.PartialObjectContainer.Open() at Db4objects.Db4o.Internal.IoAdaptedObjectContainer..ctor(IConfiguration config, String fileName) at Db4objects.Db4o.Internal.ObjectContainerFactory.OpenObjectContainer(IConfiguration config, String databaseFileName) at Db4objects.Db4o.Db4oFactory.OpenFile(IConfiguration config, String databaseFileName) at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port, INativeSocketFactory socketFactory) at Db4objects.Db4o.Db4oFactory.OpenServer(IConfiguration config, String databaseFileName, Int32 port) at DataObjecten.db4oManager..cctor() InnerException: </p> http://stackoverflow.com/questions/1149725/execute-a-select-top-n-in-db4o 0 Execute a "SELECT TOP n" in DB4O Pedro Santos 2009-07-19T11:44:19Z 2009-09-18T20:02:31Z <p>Does anyone know how how to execute something like a "SELECT TOP n" in DB4O in C#</p> http://stackoverflow.com/questions/226681/db4o-client-server-appears-to-only-be-able-to-process-one-query-at-a-time 1 db4o client/server appears to only be able to process one query at a time? Peter Mounce 2008-10-22T16:56:59Z 2009-09-14T21:38:28Z <p>We're evaluating db4o (an OO-DBMS from <a href="http://www.db4o.com" rel="nofollow">http://www.db4o.com</a>). We've put together a performance test for client/server mode, where we spin up a server, then hammer it with several clients at once. It seems like the server can only process one client's query at a time.</p> <p>Have we missed a configuration switch somewhere that allows for this scenario? Server implementation is below. The client connects, queries (read-only), and disconnects per operation, and operations run one immediately after the other from several worker threads in the client process. We see same behaviour if we spin up one client process with one worker each against the same server.</p> <p>Any suggestions?</p> <p>Edit: We've now discovered, and tried out, the Lazy and Snapshot QueryModes, and although this alleviates the blocking server problem (partially), we still see significant concurrency problems when our clients (we run 40 concurrent test-clients that wait 1-300ms before issuing a random operation-request) hammer on the server. There appear to be exceptions emanating from the LINQ provider and from the IO internals :-(</p> <pre><code> public class Db4oServer : ServerConfiguration, IMessageRecipient { private bool stop; #region IMessageRecipient Members public void ProcessMessage(IMessageContext con, object message) { if (message is StopDb4oServer) { Close(); } } #endregion public static void Main(string[] args) { //Ingestion.Do(); new Db4oServer().Run(true, true); } public void Run(bool shouldIndex, bool shouldOptimizeNativeQueries) { lock (this) { var cfg = Db4oFactory.NewConfiguration(); if (shouldIndex) { cfg.ObjectClass(typeof (Sequence)).ObjectField("k__BackingField").Indexed(true); cfg.ObjectClass(typeof (Vlip)).ObjectField("k__BackingField").Indexed(true); } if (shouldOptimizeNativeQueries) { cfg.OptimizeNativeQueries(true); } var server = Db4oFactory.OpenServer(cfg, FILE, PORT); server.GrantAccess("0", "kieran"); server.GrantAccess("1", "kieran"); server.GrantAccess("2", "kieran"); server.GrantAccess("3", "kieran"); //server.Ext().Configure().ClientServer().SingleThreadedClient(false); server.Ext().Configure().MessageLevel(3); server.Ext().Configure().Diagnostic().AddListener(new DiagnosticToConsole()); server.Ext().Configure().ClientServer().SetMessageRecipient(this); try { if (!stop) { Monitor.Wait(this); } } catch (Exception e) { Console.WriteLine(e.ToString()); } server.Close(); } } public void Close() { lock (this) { stop = true; Monitor.PulseAll(this); } } } </code></pre> http://stackoverflow.com/questions/1000054/db4o-querying-subobject 0 db4o querying subobject Fred 2009-06-16T07:45:10Z 2009-09-11T00:40:16Z <p>I've just started with db4o and I stumbled on to a problem.</p> <p>I have an object with a subobject (it is probably not the correct word but I hope you get what I mean).</p> <p>The subobject contains two dates, one start date and one end date.</p> <p>I would like to show the main object if it has at least one sub object where DateTime.Now is inbetween the start and end date.</p> <p>I have to use native query or SODA (linq isn't working in the project).</p> <p>Thanks in advance!</p> <p>/Fredrik</p> http://stackoverflow.com/questions/1069187/how-to-design-many-to-many-relationships-in-an-object-database 3 How to design many-to-many relationships in an object database? paul 2009-07-01T13:36:02Z 2009-09-02T19:40:17Z <p>I thought it was about time to have a look at OO databases and decided to use db4o for my next little project - a small library.</p> <p>Consider the following objects: Book, Category.</p> <p>A Book can be in 0-n categories and a Category can be applied to 0-m Books.</p> <p>My first thought is to have a joining object such as BookCatecory but after a bit of Googling I see that this is not appropriate for 'Real OO'.</p> <p>So another approach (recommended by many) is to have a list in both objects: Book.categories and Category.books. One side handles the relationship: Book.addCategory adds Category to Book.categories and Book to Category.books. How to handle commits and rollbacks when 2 objects are been altered within one method call?</p> <p>What are your thoughts? The second approach has obvious advantages but, for me at least, the first 'feels' right (better normed). </p> http://stackoverflow.com/questions/689732/conditional-clauses-for-linq-to-db4o-query 0 Conditional clauses for linq to Db4O query? boris callens 2009-03-27T13:18:32Z 2009-08-31T06:37:35Z <p>In linq to sql i can do like this:</p> <pre><code>var q = db.Colors; if(! string.IsNullOrEmpty(colorName)) q = q.Where(c=&gt;c.Name.Equals(colorName)); return q.ToList(); </code></pre> <p>In Db4O linq I can't do it like this because I have to start with</p> <pre><code>var q = (from Color c in db select c); if(! string.IsNullOrEmpty(colorName)) q = q.Where(c=&gt;c.Name.Equals(colorName)); return q.ToList(); </code></pre> <p>This results in </p> <ol> <li>a complete enumeration of ALL the colors</li> <li>a filter by name.</li> </ol> <p>That's not the solution I was aiming for off course. Any suggestions?</p> http://stackoverflow.com/questions/1264785/how-can-i-stop-null-logs-folder-being-created 0 How can I stop ".\null\logs" folder being created? dommer 2009-08-12T07:44:00Z 2009-08-12T07:44:00Z <p>My Java 6 console app is creating an empty ".\null\logs" folder when I run it. I've tracked this down to being caused by db4o. Why is this being created, and is there any way that I can prevent it from being created? </p> <p>This happens under both Windows XP and Vista, if that's relevant.</p> http://stackoverflow.com/questions/1137955/opening-objects-with-a-renamed-namespace-assembly-in-db4o 0 Opening objects with a renamed namespace/assembly in db4o Chris S 2009-07-16T14:21:31Z 2009-08-05T00:00:01Z <p>I have a set of objects in db4o format in a .dat file. The objects in that file are OldNamespace.MyObject, OldAssemblyName.</p> <p>The problem is I've sinced renamed the namespace and assembly to something more permanent. Short of renaming the assembly and namespace (which is what I'm doing), is there a way of opening the objects into the new assembly/namespace names?</p> <p>Or am I stuck forever with "MyTest3" for the assembly name and namespace?!</p> http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o 2 Querying by type in DB4O Shaharyar 2009-06-22T13:43:53Z 2009-06-22T14:43:09Z <p>How do you pass a class type into a function in C#?</p> <p>As I am getting into db4o and C# I wrote the following function after reading the tutorials:</p> <pre><code> public static void PrintAllPilots("CLASS HERE", string pathToDb) { IObjectContainer db = Db4oFactory.OpenFile(pathToDb); IObjectSet result = db.QueryByExample(typeof("CLASS HERE")); db.Close(); ListResult(result); } </code></pre> http://stackoverflow.com/questions/964053/saving-images-or-pdfs-in-db4o 2 Saving images or pdfs in db4o Fred 2009-06-08T09:26:10Z 2009-06-08T09:29:31Z <p>I know it is not a good thing to save files in a relational databas. But how about in a objectdatabase? Is it still a bad idea or are they more adapted for this kind of operations?</p> http://stackoverflow.com/questions/910037/how-does-db4o-instantiate-objects 3 How does db4o instantiate objects ? lbownik 2009-05-26T10:36:57Z 2009-05-26T10:52:43Z <p>What mechanism does db4o use to instatniate stored objects ?</p> <p>My class isn't Serializable and doesn't provide zero argument constructor and the only constructor throws NullPointerException when it's argument is null.</p> <p>In spite of that db4o can still instantiate stored objects of that class (thugh with incorrect values).</p> <p>If I can understand the mechanism perchaps i can track the bug I have.</p> <p>I will appreciate any links :]</p>