Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-16 Thread Dale Henrichs
On 02/16/2017 11:26 AM, sergio ruiz wrote: Funny you should mention that. i ended up removing all the voyage stuff, and just using objects.. as soon as i am ready to go live, i am going to use gemstones.. is there a quick and easy setup for heroku or digital ocean? Probably not as simple

Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-16 Thread sergio ruiz
Funny you should mention that. i ended up removing all the voyage stuff, and just using objects.. as soon as i am ready to go live, i am going to use gemstones.. is there a quick and easy setup for heroku or digital ocean? On February 15, 2017 at 12:15:48 PM, Dale Henrichs (dale.henri...@gemta

Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-15 Thread Dale Henrichs
Sergio, If you find that your data set grows large enough, keep in mind that you can port your application to GemStone/S[1]. GemStone provides a scalable solution for image-based persistence while preserving smalltalkiness:) Dale [1] https://gemtalksystems.com/small-business/gsdevkit/ On 02

Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-15 Thread stepharong
On Tue, 14 Feb 2017 17:29:18 +0100, Ben Coman wrote: On Tue, Feb 14, 2017 at 11:01 PM, sergio ruiz wrote: Hey, all.. I have been working on creating a REST interface using Teapot. In learning how to handle exceptions, I have been following along with the library example. One of the

Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-14 Thread sergio ruiz
this is a GREAT answer.. a totally smalltalky answer! i need to extend this test out to include randomly accessing a million records at a time… On February 14, 2017 at 12:15:28 PM, Ben Coman (b...@openinworld.com) wrote: On Wed, Feb 15, 2017 at 12:29 AM, Ben Coman wrote: On Tue, Feb 14,

Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-14 Thread Ben Coman
On Wed, Feb 15, 2017 at 12:29 AM, Ben Coman wrote: > > > On Tue, Feb 14, 2017 at 11:01 PM, sergio ruiz > wrote: > >> Hey, all.. >> >> I have been working on creating a REST interface using Teapot. In >> learning how to handle exceptions, I have been following along with the >> library example.

Re: [Pharo-users] [Data Modeling] approaches to data persistence

2017-02-14 Thread Ben Coman
On Tue, Feb 14, 2017 at 11:01 PM, sergio ruiz wrote: > Hey, all.. > > I have been working on creating a REST interface using Teapot. In > learning how to handle exceptions, I have been following along with the > library example. > > One of the things i noticed was that, in the library example, t

[Pharo-users] [Data Modeling] approaches to data persistence

2017-02-14 Thread sergio ruiz
Hey, all.. I have  been working on creating a REST interface using Teapot. In learning how to handle exceptions, I have been following along with the library example.  One of the things i noticed was that, in the library example, they are modeling that data a little differently than i have been