hot questions tagged db4o+java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:55:43Z http://stackoverflow.com/feeds/tag?tagnames=db4o%2bjava&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf 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/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/21207/db4o-experiences 12 db4o experiences? mafro 2008-08-21T21:12:01Z 2009-02-09T15:42:28Z <p>I'm currently trying out db4o (the java version) and I pretty much like what I see. But I cannot help wondering how it does perform in a real live (web-)environment. Does anyone have any experiences (good or bad) to share about running db4o? </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/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> http://stackoverflow.com/questions/762459/how-to-disable-java-security-manager 1 How to disable Java security manager? Pawel Piatkowski 2009-04-17T22:40:34Z 2009-04-21T05:15:08Z <p>Is there any way to completely disable Java security manager? <br/></p> <p>I'm experimenting with source code of db4o. It uses reflection to persist objects and it seems that security manager doesn't allow reflection to read and write private or protected fields.</p> <p>My code:</p> <pre><code>public static void main(String[] args) throws IOException { System.out.println("start"); new File( DB_FILE_NAME ).delete(); ObjectContainer container = Db4o.openFile( DB_FILE_NAME ); String ob = new String( "test" ); container.store( ob ); ObjectSet result = container.queryByExample( String.class ); System.out.println( "retrieved (" + result.size() + "):" ); while( result.hasNext() ) { System.out.println( result.next() ); } container.close(); System.out.println("finish"); } </code></pre> <p>Output:</p> <pre> start [db4o 7.4.68.12069 2009-04-18 00:21:30] AccessibleObject#setAccessible() is not available. Private fields can not be stored. retrieved (0): finish </pre> <p><br/> <a href="http://developer.db4o.com/forums/permalink/10482/10482/ShowThread.aspx" rel="nofollow"> This thread </a> suggests modifying java.policy file to allow reflection but it doesn't seem to work for me.</p> <p>I'm starting JVM with arguments<br /> <code>-Djava.security.manager -Djava.security.policy==/home/pablo/.java.policy</code> <br/> so specified policy file will be the only policy file used</p> <p>The file looks like this:</p> <pre> grant { permission java.security.AllPermission; permission java.lang.reflect.ReflectPermission "suppressAccessChecks"; }; </pre> <p>I spent last 3 hrs on this and don't have any ideas how to make this work. Any help appreciated.</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/299373/db4o-and-osgi-empty-database-after-restart 0 db4o and OSGi - empty database after restart Danail Nachev 2008-11-18T16:59:00Z 2008-11-18T16:59:00Z <p>I'm using db4o 6.4.54 in OSGi environment as a model storage. Every time I restart OSGi framework, the database appears to be empty, although the file is there and not empty definitely.</p> <p>I have the following configuration:</p> <p>A core bundle, which depends on the standard db4o_osgi bundle provided by db4o. An UI bundle, which depends on the core plugin, from where it gets the model.</p> <p>The core bundle creates in-memory server via openServer(String, 0) method and then create separate clients for each request/thread.</p> <p>The problem is that, every time the db4o server is created, queries returns no result.</p> <p>I tried to use the service, but it also didn't work.</p> <p>The next step in my testing was to include the db4o directly into my bundle and it worked (the effect was that db4o classes are loaded by the same classloader as the model object, which I stored into the database). There is one post in the db4o forum [1], but it fails to explain why this problem exists and how it should be solved (correctly). I'll continue my investigations, but I wonder whether anyone else have tuckle this problem before me?</p>