Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Offray Vladimir Luna Cárdenas
Hi, On 30/11/15 12:42, Dimitris Chloupis wrote: ah this is very good news for me thanks. I really like Fuel, well done guys, looks very well designed. Yeah feature wise I dont care about something advanced, If I need something much more advanced I will use a proper database. I am slightly s

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Dimitris Chloupis
ah very nice client you had :) Thank you Mariano very much will take a deep look into it and I am sure will be back with more questions, its fascinating. On Mon, Nov 30, 2015 at 7:54 PM Mariano Martinez Peck wrote: > On Mon, Nov 30, 2015 at 2:42 PM, Dimitris Chloupis > wrote: > >> ah this is v

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Mariano Martinez Peck
On Mon, Nov 30, 2015 at 2:42 PM, Dimitris Chloupis wrote: > ah this is very good news for me thanks. I really like Fuel, well done > guys, looks very well designed. > > Yeah feature wise I dont care about something advanced, If I need > something much more advanced I will use a proper database. >

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Dimitris Chloupis
ah this is very good news for me thanks. I really like Fuel, well done guys, looks very well designed. Yeah feature wise I dont care about something advanced, If I need something much more advanced I will use a proper database. I am slightly surprised that none or at least AFAIK has not create a

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Mariano Martinez Peck
On Mon, Nov 30, 2015 at 11:40 AM, Dimitris Chloupis wrote: > Yes I have read the docs on how to use Fuel on how to use it and how to > exclude things I dont want to be stored in fuel file, I was just curious. > As a matter of fact I like deep copies. > > Is it ok to use Fuel to make my own , supe

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Dimitris Chloupis
Yes I have read the docs on how to use Fuel on how to use it and how to exclude things I dont want to be stored in fuel file, I was just curious. As a matter of fact I like deep copies. Is it ok to use Fuel to make my own , super light, database ? Just a way to manage and port my objects between i

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Mariano Martinez Peck
On Mon, Nov 30, 2015 at 8:41 AM, Dimitris Chloupis wrote: > I have a class A that has an instance variable the references an instance > of Class B , but also Class B has an instance variable the references an > instance of Class A. Basically its a GUI that references its model and the > same mode

Re: [Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Sven Van Caekenberghe
Both Fuel and STON deal correctly with circular references and structure sharing. However, and this is an important difference, since FUEL is saving everything it sees (everything your objects point to), it often saves a lot (way more than you expect). STON (and JSON, XML, ..) are much less pow

[Pharo-users] How fuel deals with circular reference ?

2015-11-30 Thread Dimitris Chloupis
I have a class A that has an instance variable the references an instance of Class B , but also Class B has an instance variable the references an instance of Class A. Basically its a GUI that references its model and the same model referencing the same instance of GUI. How Fuel deals with such sc