The eager tag has no wiki summary.
1
vote
1answer
31 views
Hibernate/JPA not possible to do eager loading
Working with Spring MVC, Hibernate and JPA.
I tried to Load some Collection from Controller and runned into an LazyLoading Exception.
So i wanted to switch over to Egar loading.
I have two classes ...
1
vote
2answers
27 views
NHibernate - why is this collection not initialized / eager fetched?
Considering this:
var pfs = Session.QueryOver<Pegfile>()
.JoinAlias(pf => pf.Responses, () => responseAlias)
.List();
followed by this
...
0
votes
0answers
14 views
Entity framework eager loading with Include
public class Like
{
[Key]
public int LikeId { get; set; }
public int PostId { get; set; }
public int Likes { get; set; }
}
public class LikedBy
{
[Key]
public int Id { ...
0
votes
1answer
100 views
JPA EAGER fetch works only if server is restarted
Good evening everybody, this is my first post on Stack Overflow.
I have been quite recently introduced to Java 6 EE and, in particular, to JPA as part of the JSF 2.1 framework and I am now facing a ...
0
votes
1answer
111 views
How can I use ORMLite with objects that contain ArrayLists of other objects?
I have a Android java project with quite complex datatypes including ArrayLists of other complex datatypes. I’m trying to store my data in a database using ORMLite (4.42).
I have major problems ...
0
votes
0answers
67 views
NHibernate: eager fetch several levels
I've looked through here and haven't quite found the answer I'm looking for yet. Some of the threads are very close to what I'm looking for, but I can't get the final item.
I have a database diagram ...
1
vote
1answer
356 views
Laravel Eager Loading missing relationships when chained with first()/all()
Using L3 the following works fine :
$r = Site::with('services')->get()
That returns exactly what I'd expect. An array of Site objects, with the services relationship all neatly populated.
...
0
votes
2answers
94 views
Load the whole database with Hibernate
I am using SQLite3 and Hibernate with Java. Can I somehow load the whole database in memory or fetch all data from the database so that I can access mapped objects fastest? For example if we have a ...
1
vote
1answer
187 views
Hibernate: Eager fetching / help me survive my hibernate nightmare
I am trying to return a List of Objects with the following HQL-Statement:
return getHibernateTemplate().findByNamedParam("Select distinct response.user
from Survey survey
inner join fetch ...
0
votes
1answer
90 views
Grails Eager fetching an empty association returns null
I have domain classes as follows
Class Author{
String name
List books = LazyList.decorate(new ArrayList(), FactoryUtils.instantiateFactory(Book.class)
static hasMany = [books:Book]
}
Class Book ...
0
votes
0answers
67 views
toplink enforce lazy loading runtime
In TopLink, can I enforce lazy loading with my Object/entity that has some composite ref. objects. Currently I have eager initialization .
1
vote
0answers
196 views
Trying to understand Hibernate Fetch Eager Strategy
I have currently significant performance problems with a proliferation if SQL-Statements executed by hibernate (V3.5.1) during a request. So I tried to dive into the details to understand the details ...
0
votes
1answer
117 views
NHibernate avoiding N+1 with deep level
I have the following objects:
A -> B -> IList -> D -> IList and so on..
If I fetch the list of A, NHibernate does an inner join on B. That's okay.
But C is fetched with the N+1 problem.
I tried ...
0
votes
0answers
111 views
Griffon/Groovy Spring plugin: eager/lazy creation?
in my Griffon project I need to load several beans from different sources (including a jar) and after playing a little bit I realize that beans are created in a lazy mode, no problem with this, so ...
0
votes
1answer
695 views
Grails criteria query with fetchMode eager with two levels
In my Grails project, I have the following classes:
class A {
static hasMany = [cs:C]
}
class B {
static hasMany = [cs:C]
}
class C {
static belongsTo = [a:A, b:B]
}
I would like to ...
5
votes
2answers
331 views
Eager fetching collections in Hibernate with ScrollableResults
I'm trying to use Hibernate to retrieve approximately 100 million rows from a table. I have a persisted entity Item that contains a collection of Fees inside (another persisted entity). Given that I ...
0
votes
1answer
3k views
Lazy vs Eager loading with JPA
I am trying to get some JPA stuff to work. I have a table that has foreign keys to another tables. When I generate the JPA entities I get one to many anotations over those variables... what else ...
0
votes
1answer
142 views
Rails - Why Eager loading is not working in this case?
I have these 3 models with a has_many through relation:
class Wine < ActiveRecord::Base
has_many :varietals, :conditions => "varietals.status = 1"
has_many :grapes, :through => ...
0
votes
1answer
291 views
grails, disable eager fetching when render a domain list as JSON
model:
class Author{
String name
static hasMany = [books: Book]
}
class Book{
String name
Author author
static belongsTo = Author
}
Then i have a controller
class MyController{
...
8
votes
3answers
489 views
Lazy vs eager evaluation and double linked list building
I can't sleep! :)
I've written small program building double linked list in Haskell. The basic language's property to make it was lazy evaluation (see the bunch of code below). And my question is can ...
2
votes
1answer
82 views
Is there a Grails plugin for detecting N+1 fetching (similar to the Rails bullet gem)?
I recently learned about the Rails "bullet" gem that addresses the N+1 problem and determines when your app should or should not use eager fetching. Apparently it checks at runtime on the occurrence ...
3
votes
1answer
232 views
Eager versus Lazy Haskell. Infinite lists possible in Eager languages?
Apparently it is possible to implement Haskell such that it evaluates eagerly without changing the semantics of the language at all. If that is true, how are infinite data structures handled?
...
1
vote
1answer
259 views
Rails + UUID + Eager loading
I have 2 models in my rails app, one with an UUID primary key :
class User < ActiveRecord::Base
belongs_to :country, :foreign_key => 'country_uuid'
end
class Country < ActiveRecord::Base
...
2
votes
4answers
639 views
Use fetch join or EAGER to solve hibernate multiple-bag-fetch-issue?
I have a Class A which has one-to-many relationship with class B & C. I had set the fetchType to EAGER which causes the multiple bag fetch problem in JPA. Now there are two ways to solve the ...
1
vote
1answer
3k views
Guice eager/lazy singleton instantiations
I'm having some troubles understanding how Guice's singleton instantiations works. I've read the available documentation (here - http://code.google.com/p/google-guice/wiki/Scopes ), but I still can't ...
0
votes
1answer
692 views
Eager loading of multiple related entities
I need to add an extension method that can handle multiple Include to an already existing Repository class:
public abstract class Repository<TEntity, TPrimaryKey> : IRepository<TEntity, ...
0
votes
1answer
585 views
HQL / Nested Eager Loading
I am wondering what the best way is to load nested values for lazy loaded objects. I'm providing an example to help explain this better.
public class A{
private B b; //Lazy loaded
private C ...
1
vote
1answer
373 views
Fluent NHibernate Linq Complex Component Eager Loading
We are using Fluent NHibernate LINQ in our project with legacy database.
Our scenario is that we have a table with Customer information with address.
We have created Customer and Address as separate ...
1
vote
3answers
309 views
Flex-Cairngorm/Hibernate - Is EAGER fetching strategy pointless?
I will try to be as concise as possible. I'm using Flex/Hibernate technologies for my app. I also use Cairngorm micro-architecture for Flex. Because i'm beginner, i have probably misunderstand ...
2
votes
1answer
155 views
Why am I getting a cast error when trying to use Simpson's rule in Clojure?
I'm trying to work through some of the exercises in SICP using Clojure, but am getting an error with my current method of executing Simpson's rule (ex. 1-29). Does this have to do with lazy/eager ...
1
vote
3answers
280 views
How can I run the initialization code for a generator function immediately, rather than at the first call?
I have a generator function that goes something like this:
def mygenerator():
next_value = compute_first_value()
while next_value != terminating_value:
yield next_value
I would like ...
2
votes
2answers
749 views
Rails eager loading and kaminari
How to use eager loading while paginating with kaminari? I know that kaminari needs Relation object to work, how to retrieve models with :include and return Relation object?
And second question, why ...
1
vote
2answers
522 views
F# lazy eval from stream reader?
I'm running into a bug in my code that makes me think that I don't really understand some of the details about F# and lazy evaluation. I know that F# evaluates eagerly and therefore am somewhat ...
3
votes
1answer
785 views
Entity Framework 4 POCO - Lazy + Eager Loading
I have the following DB structure (simplified version):
Comments - CommentId, UserId
Users - UserId
UserDetails - UserId, Address, Phone, etc.
I am using EF 4 with POCOs. The User property of the ...
7
votes
2answers
4k views
Hibernate: Overriding mapping's EAGER in HQL?
It's possible to override LAZY in HQL using LEFT JOIN FETCH.
FROM Obj AS obj LEFT JOIN FETCH obj.otherObj WHERE obj.id = :id
Is it also possible to override EAGER? How?
6
votes
1answer
1k views
How do I disable “eager” validation entirely using jquery validate?
Is there a way to disable "eager" validation using the jquery.validate plugin? Either through an option in the script or as a hack? "Eager" validation kicks in once the form has been validated once - ...
2
votes
6answers
845 views
eagerly evaluating boolean expressions in Python
Is there a way (using eval or whatever) to evaluate eagerly boolean expressions in python?
Let's see this:
>>> x = 3
>>> 5 < x < y
False
Yikes! That's very nice, because ...
0
votes
2answers
1k views
Grails GORM Domain class relationship
Grails 1.1.1
Goovy 1.5.7
In a relationship such this:
Author 1 -- n Book n -- 1 Publisher
Defined in Grails:
class Author {
String firstName
String lastName
static hasMany = [books: ...
4
votes
2answers
1k views
How do you programmatically turn off eager fetching with hibernate?
I have in my mapping an association to an eagerly loaded collection (lazy="false" fetch="subselect"). How can I turn that off programmatically with Hibernate when I do a query?
Thanks
4
votes
7answers
824 views
When is lazy evaluation not useful?
Delay execution is almost always a boon. But then there are cases when it’s a problem and you resort to “fetch” (in Nhibernate) to eager fetch it.
Do you know practical situations when lazy ...
32
votes
3answers
10k views
Linq for NHibernate and fetch mode of eager loading
Is there a way to set the fetchmode to eager for more than one object using linq for nhibernate. There seems to be an expand method which only allows me to set one object. However I need to set it for ...
1
vote
1answer
484 views
Is it possible to eager load over two one-to-many relationships in NHibernate?
Given an object hierarchy such as the following:
class Category
{
List<SubCategory> SubCategories;
}
class SubCategory
{
List<Product> Products;
}
class Product
{
}
Is it ...
2
votes
1answer
969 views
How to Eager Load entire SQL table in LINQ?
Writing my first Linq application, and I'm trying to find the best way to do the following:
I want to load the entire employees table at once to populate the cache (used for form autocomplete).
I ...
12
votes
1answer
11k views
Ways to avoid eager spool operations on SQL Server
I have an ETL process that involves a stored procedure that makes heavy use of SELECT INTO statements (minimally logged and therefore faster as they generate less log traffic). Of the batch of work ...