Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Regarding Lazy loading in spring data graph.
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  10 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
gokulakanna balakrishnan  
View profile  
 More options Aug 10 2012, 9:47 pm
From: gokulakanna balakrishnan <gokulbala1...@gmail.com>
Date: Fri, 10 Aug 2012 18:47:30 -0700 (PDT)
Local: Fri, Aug 10 2012 9:47 pm
Subject: Regarding Lazy loading in spring data graph.

Hi All,

   @Fetch - eager fetching. Is it possible to implement lazy loading in
spring data graph.

Thanks & Regards,
Gokul


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Aug 10 2012, 10:22 pm
From: Michael Hunger <michael.hun...@neotechnology.com>
Date: Sat, 11 Aug 2012 04:22:31 +0200
Local: Fri, Aug 10 2012 10:22 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.

lazy loading is the default

use template.fetch(object.field) to fetch on demand

Michael

Am 11.08.2012 um 03:47 schrieb gokulakanna balakrishnan:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gokulakanna balakrishnan  
View profile  
 More options Aug 10 2012, 10:44 pm
From: gokulakanna balakrishnan <gokulbala1...@gmail.com>
Date: Sat, 11 Aug 2012 08:14:07 +0530
Local: Fri, Aug 10 2012 10:44 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.
Hi Michael,

If I need to fetch the data in GUI layer I Could not invoke the
template.fetch(fetch id).

If i need to fetch the Relation(Collection set). In this is case how i
can fetch my relations.

Please advice me for above two scenarios.

Thanks & Regards,
Gokul

On Sat, Aug 11, 2012 at 7:52 AM, Michael Hunger


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Aug 10 2012, 10:54 pm
From: Michael Hunger <michael.hun...@neotechnology.com>
Date: Sat, 11 Aug 2012 04:54:00 +0200
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.
What was the issue?

template.fetch(object.single_rel)
template.fetch(object.set)

Am 11.08.2012 um 04:44 schrieb gokulakanna balakrishnan:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gokulakanna balakrishnan  
View profile  
 More options Aug 10 2012, 11:09 pm
From: gokulakanna balakrishnan <gokulbala1...@gmail.com>
Date: Sat, 11 Aug 2012 08:39:24 +0530
Local: Fri, Aug 10 2012 11:09 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.
Hi Michael,

I have to add new teams the user like following way.

   user.getGroupSet().add(group); --- Previously i was using egar
fetch so i able to achieve with out loading i able to add new group
                                      for the user.

   Same way I able to display the all the grops whcich user created.
following way.

   <s:iterator value="user.groupSet" status="stat"> ---
   </s:iterator>

Above case I could not diplay the groups like above because of lazy
loading . We have to load groupSet separetly. Is it correct?

Thanks & Regards,
Gokul

On Sat, Aug 11, 2012 at 8:24 AM, Michael Hunger


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Aug 11 2012, 2:34 am
From: Michael Hunger <michael.hun...@neopersistence.com>
Date: Sat, 11 Aug 2012 08:34:19 +0200
Local: Sat, Aug 11 2012 2:34 am
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.
Then you have to use either @Fetch oe template.fetch()

You can also use template.creatRelationshipBetween() to create rels w/o fetching all

Sent from mobile device

Am 11.08.2012 um 05:09 schrieb gokulakanna balakrishnan <gokulbala1...@gmail.com>:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gokulakanna balakrishnan  
View profile  
 More options Aug 11 2012, 12:46 pm
From: gokulakanna balakrishnan <gokulbala1...@gmail.com>
Date: Sat, 11 Aug 2012 22:16:33 +0530
Local: Sat, Aug 11 2012 12:46 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.
Thanks alot Michael.

On Sat, Aug 11, 2012 at 12:04 PM, Michael Hunger


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gokulakanna balakrishnan  
View profile  
 More options Aug 11 2012, 1:30 pm
From: gokulakanna balakrishnan <gokulbala1...@gmail.com>
Date: Sat, 11 Aug 2012 23:00:21 +0530
Local: Sat, Aug 11 2012 1:30 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.

Hi Michael,

     I dont have any separate relationship class. Is it possible to pass
null as argurment for RelationshipClass parameter or I have to create
relationship class separetly.

     userRepository.createDuplicateRelationshipBetween(user,
createUserAcheivement(userAcheivementsDTO), *null*,
RelationShipConstants.USER_ACHEIVEMENTS);

Thanks & Regards,
Gokul

On Sat, Aug 11, 2012 at 10:16 PM, gokulakanna balakrishnan <

gokulbala1...@gmail.com> wrote:
> Thanks alot Michael.

> On Sat, Aug 11, 2012 at 12:04 PM, Michael Hunger
> <michael.hun...@neopersistence.com> wrote:
>> Then you have to use either @Fetch oe template.fetch()

>> You can also use template.creatRelationshipBetween() to create rels w/o
fetching all

>> Sent from mobile device

>> Am 11.08.2012 um 05:09 schrieb gokulakanna balakrishnan <

gokulbala1...@gmail.com>:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Hunger  
View profile  
 More options Aug 11 2012, 4:54 pm
From: Michael Hunger <michael.hun...@neotechnology.com>
Date: Sat, 11 Aug 2012 22:54:45 +0200
Local: Sat, Aug 11 2012 4:54 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.

I don't have the code at hand can you try to pass either null or just Relationship.class ?

Thx

Michael

Am 11.08.2012 um 19:30 schrieb gokulakanna balakrishnan:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
gokulakanna balakrishnan  
View profile  
 More options Aug 11 2012, 10:25 pm
From: gokulakanna balakrishnan <gokulbala1...@gmail.com>
Date: Sun, 12 Aug 2012 07:55:07 +0530
Local: Sat, Aug 11 2012 10:25 pm
Subject: Re: [Neo4j] Regarding Lazy loading in spring data graph.

Sure Michael.

Thanks & Regards,
Gokul

On Sun, Aug 12, 2012 at 2:24 AM, Michael Hunger <


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »