[Pharo-users] Re: voyage in singleton mode

2021-06-03 Thread Sabine Manaa
Hi Russ, there are also some videos at youtube: https://youtu.be/sYFAwjpCFKA https://youtu.be/1szVgKQm474 Note that there are some starting questions have been answered in the mailing list: http://forum.world.st/template/NamlServlet.jtp?macro=search_page=1294836=voyage=1294836 and in the

[Pharo-users] Re: voyage in singleton mode

2021-06-03 Thread Stéphane Ducasse
Have a look at the Voyage booklet available on books.pharo.org and let us know. S > On 3 Jun 2021, at 00:25, Russ Whaley wrote: > > I am very interested in getting started with MongoDB. I’ve been using STON > for full object model read/writes, but I’d like to take

[Pharo-users] Re: voyage in singleton mode

2021-06-03 Thread Esteban Lorenzano
hi, you can start by voyage which is an Object-Document mapper or directly with the mongo driver if you do not want to use it :) in any case, installing voyage will install also the driver and you can start there to see how it works ;) Esteban On Jun 3 2021, at 12:25 am, Russ Whaley wrote: >

[Pharo-users] Re: voyage in singleton mode

2021-06-02 Thread Russ Whaley
I am very interested in getting started with MongoDB. I’ve been using STON for full object model read/writes, but I’d like to take the next step into a more sustainable path (as my object models grow larger with time). I’m using Pharo v9 on MacOS. Where should I start? Voyage? Any pointers/tips

[Pharo-users] Re: voyage in singleton mode

2021-06-01 Thread Jesus Mari Aguirre
Thanks Norbert! Voyage is a great piece of software. El mar., 1 jun. 2021 11:53, Norbert Hartl escribió: > You should not have to worry. The two possible culprits are the VOCache > which should be thread safe done by a semaphore. The other one is the > connection to the database. Here the

[Pharo-users] Re: voyage in singleton mode

2021-06-01 Thread Norbert Hartl
You should not have to worry. The two possible culprits are the VOCache which should be thread safe done by a semaphore. The other one is the connection to the database. Here the connection pool removes that problem. Hope that answers your question. I use it just as it is in a concurrent