Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
10answers
11k views

Thread safe lazy construction of a singleton in C++

Is there a way to implement a singleton object in C++ that is: Lazily constructed in a thread safe manner (two threads might simultaneously be the first user of the singleton - it should still only ...
10
votes
1answer
457 views

shared, weak and lazy pointers in C++

Is anyone aware of an implementation of shared_ptr and weak_ptr together with a lazy initialization partner? The requirements of the classes were: A lazy_ptr class that allows a client to construct ...
9
votes
1answer
155 views

What advantages does Lazy<T> offer over standard lazy instantiation?

Consider this example, it shows two possible ways of lazy initialization. Except for being thread-safe, are there any specific advantates of using Lazy<T> here? class Customer { private ...
8
votes
2answers
167 views

why is Lazy<T> constrained to static contexts?

I'd like to use Lazy T to implement memoization but the initialization function appears to require a static context. For example, the following code refuses to compile, warning that non-static ...
7
votes
3answers
420 views

Should C# have a lazy key word

Should C# have a lazy keyword to make lazy initialization easier? E.g. public lazy string LazyInitializeString = GetStringFromDatabase(); instead of private string _backingField; ...
6
votes
4answers
149 views

Any good reasons to not use null-coalescing operator for lazy initialization?

Greetings I was doing some lazy initialization code today, and thought why not use the null-coalescing operator to do this, it is shorter, but then I thought is there any overhead or additional cost ...
5
votes
5answers
64 views

Why is a Java String hash code lazy generated?

It appears in java.lang.String.java, that Java will only generate the hashcode, and then store it, after a call to hashcode(), but why not just make the hashcode in the constructor? The relevant ...
5
votes
1answer
180 views

gcc attributes for init-on-first-use functions

I've been using the gcc const and pure attributes for functions which return a pointer to "constant" data that's allocated and initialized on the first use, i.e. where the function will return the ...
5
votes
6answers
967 views

lazy function definitions in scala

I've been learning scala and I gotta say that it's a really cool language. I especially like its pattern matching capabilities and function literals but I come from a javascript, ruby background and ...
4
votes
3answers
233 views

Singleton lazy vs eager instantiation

If a singleton is implemented as follows, class Singleton { private static Singleton instance = new Singleton(); public static Singleton getInstance() { return instance; } } ...
4
votes
3answers
474 views

Methods for Lazy Initialization with properties

I'm currently altering a widely used class to move as much of the expensive initialization from the class constructor into Lazy Initialized properties. Below is an example (in c#): Before: public ...
4
votes
5answers
19k views

How to solve lazy initialization exception using JPA and Hibernate as provider

I am working on a project for a customer who wants to use lazy initialization. They always get "lazy initialization exception" when mapping classes with the default lazy loading mode. @JoinTable(name ...
3
votes
6answers
138 views

How to implement thread-safe lazy initialization?

What are some recommended approaches to achieving thread-safe lazy initialization? For instance, // Not thread-safe public Foo getInstance(){ if(INSTANCE == null){ INSTANCE = new Foo(); ...
3
votes
3answers
96 views

How to have a C# readonly feature but not limited to constructor?

The C# "readonly" keyword is a modifier that when a field declaration includes it, assignments to the fields introduced by the declaration can only occur as part of the declaration or in a constructor ...
3
votes
4answers
131 views

Is the use of .Net Lazy class an overkill in this case?

I learned about Lazy class in .Net recently and have been probably over-using it. I have an example below where things could have been evaluated in an eager fashion, but that would result in repeating ...
3
votes
5answers
273 views

Threading : Lazy Initialization vs Static Lazy Initialization

I am going through Java Memory Model video presentation and author is saying it is better to use Static Lazy Initialization compared to Lazy Initialization and I do not clear understand what he wants ...
3
votes
1answer
533 views

Using JPA entities in JSF. Which is the best strategy to prevent LazyInitializationException?

Would like to hear experts on best practice of editing JPA entites from JSF UI. So, a couple of words about the problem. Imagine I have the persisted object MyEntity and I fetch it for editing. In ...
3
votes
1answer
2k views

Spring 3.0 lazy-init not honoured for DefaultMessageListenerContainer?

I've setup a spring config for JMS. Things work fine, except I can't seem to get it to lazy load (notice the default-lazy-init true in the code below). If I comment out the jmsContainer(DMLC) from my ...
3
votes
2answers
444 views

Scala lazy values : performance penalty? Threadsafe? [closed]

Possible Duplicate: What's the (hidden) cost of lazy val? (Scala) Scala allows the definition of lazy values lazy val maybeUnusedValue = someCostlyInitialization where ...
3
votes
6answers
752 views

Lazy/multi-stage construction in C++

What's a good existing class/design pattern for multi-stage construction/initialization of an object in C++? I have a class with some data members which should be initialized in different points in ...
2
votes
4answers
182 views

Ordered static initialization of thread-safe classes

This post may seem overly long for just the short question at the end of it. But I also need to describe a design pattern I just came up with. Maybe it's commonly used, but I've never seen it (or ...
2
votes
2answers
218 views

Filter JPA Entities without removing them from database

i have a database table "viewmodule" with a FK to itself (parent_id) to allow recursive structures. CREATE TABLE viewmodule ( id, type, parent_id, hide); My Java application uses JPA/Hibernate to ...
2
votes
1answer
184 views

Json error in Spring

I tried this: @RequestMapping(method = RequestMethod.GET, value = "/getmainsubjects") @ResponseBody public JSONArray getMainSubjects( @RequestParam("id") int id) { List <Mainsubjects> mains = ...
2
votes
3answers
135 views

Initialize-On-Demand idiom vs simple static initializer in Singleton implementation

Is the Initialize-On-Demand idiom really necessary when implementing a thread safe singleton using static initialization, or would a simple static declaration of the instance suffice? Simple ...
2
votes
4answers
123 views

Can static storage (mostly data segment) cause segmentation fault?

static storage is decided at compilation time. However, consider the scenario where we have lot of lazy initialization in functions: void foo () { static int a[1000]; } I am not discussing the ...
2
votes
2answers
406 views

Architecture to avoid Hibernate LazyInitializationExceptions

I am in the beginning of my project. So I am trying to design an architecture which avoid Hibernate LazyInitializationExceptions. So far my applicationContext.xml has: <bean id="sessionFactory" ...
2
votes
2answers
395 views

Lazy lookup of a dictionary value using a stateless session

In my app, I set up a ternary dictionary mapping so that for a given user, I can retrieve "settings" for each instance of an object that belongs to the user. That is, I have something like: public ...
2
votes
1answer
236 views

C# NHibernate with Spring LazyInitializationException when using the data

I'm working on an NHibernate project, and where I had trouble loading collections earlier (http://stackoverflow.com/questions/4213506/c-hibernate-criteria-loading-collection), I now have problems ...
2
votes
5answers
286 views

Configurable enum in Java

I'm looking for a better pattern to implement something like this: public static enum Foo { VAL1( new Bar() ), VAL2( new FooBar() ); private final bar; private Foo( IBar bar ) { ...
2
votes
1answer
407 views

How to create decorator for lazy initialization of a property

I want to create a decorator that works like a property, only it calls the decorated function only once, and on subsequent calls always return the result of the first call. An example: def ...
2
votes
1answer
267 views

Triple checked locking?

So in the meanwhile we know that double-checked-locking as is does not work in C++, at least not in a portable manner. I just realised I have a fragile implementation in a lazy-quadtree that I use ...
2
votes
2answers
2k views

Grails and Hibernate's Lazy Initialization Exception

Where are the most common places where you've gotten an org.hibernate.LazyInitializationException in Grails, what was the cause and how did you solve it ? I think this one exception comes up a lot ...
1
vote
1answer
30 views

Field synchronization in Play! Controllers

Consider a situation when we have a Controller with 2 action methods that use same controller field. This field should be lazily initialized. public class SomeController extends Controller { ...
1
vote
3answers
67 views

Hibernate Lazy Loading, Proxies and Inheritance

I have a problem with lazy loading in hibernate when dealing with inheritance. I have one entity that references a second entity that is subclassed. I want the reference to load lazily, but this ...
1
vote
4answers
189 views

On lazy instantiation and convenience methods

Assume you have a Singleton Constants class, instance of which you'd like to use throughout your application. In someClass, therefore we can reference [Constants instance] someCleverConstant]; ...
1
vote
1answer
364 views

failed to lazily initialize a collection of role: com.pojo.Student.phonenos, no session or session was closed

i am learning hibernate mapping using annotation. i have completed one section. ie i can insert child class automatically when i save the parent table.see_that . but i did n't get the child table ...
1
vote
4answers
91 views

remove objects from hibernate session

I have hibernate pojo class A { B b ; some other properies} with lazy= true for class B. When i get object A, B is not loaded and hibernate returns its proxy. When i pass this object to another ...
1
vote
0answers
118 views

Another LazyInitializationException (in combination with Spring+GSON)

I guess I'm another newbie guy who fails to understand Hibernate sessions, may be Spring's TransactionTemplate, dunno. Here's my story. I'm using Hibernate 3.5.5-Final, Spring 3.0.4.RELEASE, trying ...
1
vote
1answer
38 views

How can a child entity reference return a LazyInitializationException in an app using OSIV approach (Open Session In View)?

The session seems open immediately before the child objects are referenced, but there is no record of the specific child object set (even though other child objects are included) in the session's ...
1
vote
2answers
180 views

Wrong coded lazy initialization works well

Is it intentionally that a mis-coded lazy init: -(X*) prop { if (!prop) { prop = [[Prop alloc] init]; return prop; } // RETURN SHOULD BE HERE } nevertheless does 'the ...
1
vote
1answer
156 views

Lazy ApplicationListener

When I add ApplicationListener to a class, Spring instantiates the bean eagerly (probably to make sure that the bean gets all the events). In my case, I have a bean which listens for "CacheFlush" ...
1
vote
2answers
168 views

coffee scrip layzy function implementation

I would like to something like this in JavaScript var init = function () { // do some stuff once var once = true // overwrite the function ...
1
vote
0answers
239 views

How to set the id on detached Hibernate proxy without LazyInitializationException?

I'm using the object, which has over 15 related entities (parents). In my UI side I need only the ids of these entities, so I don't need Hibernate's fetch functionality and I use the lazy proxy ...
1
vote
1answer
185 views

Bean Injection After DataTable

I have a page with a datatable that reads data from a service class. That service class is suppose to be injected with a contactDAO but it does not get injected right away. In fact, when the page ...
1
vote
1answer
520 views

Hibernate: will merge work with many-to-one object transtively?

Hi I know that and tested before merge will reattach the object back to session preventing lazy initialization exception when object is no longer in session. a.) So I have a few question. If i ...
1
vote
2answers
438 views

MEF Custom attributes and Lazy

I think I am losing my mind. :) I've been struggling with this for two days now. The code looks right. But for some reason when I try to access the [ImportMany] field, it is null, or at least not ...
1
vote
1answer
370 views

Lazy initializing ISession using WebSessionContext/CurrentSessionContext

I'm starting a new project with NHibernate 3 and I'm trying to use the CurrentSessionContext API with WebSessionContext to manage my ISession object. In previous projects I always managed that ...
1
vote
2answers
642 views

Pass parameters to constructor, when initializing a lazy instance

As I know if a variable is declared lazy, then its real constructor is called when we use value property of that variable. I need to pass some parameters to this lazy instance but cannot find the ...
1
vote
3answers
141 views

How to load variables only when needed in PHP

I have a class with multiple public properties whose objects are being used in different parts of the system. The problem is that I need to load only some of those public properties in each place I'm ...
1
vote
4answers
308 views

Hibernate -> LazyInitializationException with n:m relation

I have a problem with Hibernate and the LazyInitializationException. I searched and find a lot of answers, but I can not use them to solve my problem, because I have to say, I am new to Hibernate. I ...

1 2