Re: [Pharo-users] Group and member with Voyage

2013-08-30 Thread Esteban A. Maringolo
I think that the question could be rephrased as: How to map a collection with elements of different classes? Am I asking for too much? Esteban A. Maringolo 2013/8/30 Esteban A. Maringolo : > More or less, I have this working. > > In the Group class I have a description named: > descriptionMem

Re: [Pharo-users] Group and member with Voyage

2013-08-30 Thread Esteban A. Maringolo
More or less, I have this working. In the Group class I have a description named: descriptionMembers ^VOMongoToManyDescription new attributeName: 'members'; accessor: #members; kind: Member; beLazy; yourself And in the Member class I have descriptionGroups ^VOMongoToManyDescription new a

Re: [Pharo-users] Group and member with Voyage

2013-08-30 Thread Esteban A. Maringolo
2013/8/30 James Foster : > It seems that I mistook the question for something easy enough for me to > answer! Unfortunately, I don't have any knowledge of Voyage+MongoDB so can't > really give the proper answer. Thanks anyway, it is a problem you'll never find in GemStone/S ;-)

Re: [Pharo-users] Group and member with Voyage

2013-08-30 Thread James Foster
Hi Esteban, It seems that I mistook the question for something easy enough for me to answer! Unfortunately, I don't have any knowledge of Voyage+MongoDB so can't really give the proper answer. James On Aug 30, 2013, at 11:13 AM, Esteban A. Maringolo wrote: > Hi James, > > Thanks for your re

Re: [Pharo-users] [ANN] Aida 6.6 Web Framework Released

2013-08-30 Thread Stéphane Ducasse
>> >> >> New version of Aida/Web framework and application server >> (http://www.aidaweb.si) is here with: >> >> - optimization on HTTP level to send first byte to the client as soon >> as possible >> - streaming of HTML, specially header to get first byte out >> immediately, >> - gzip compr

Re: [Pharo-users] Group and member with Voyage

2013-08-30 Thread James Foster
Hi Esteban, What you have described is quite common and there are a variety of ways of designing this sort of object model. If you were dealing with a relational database, then you would have a Group table, a Member table, and a Membership table. The Membership table would have one row for each

Re: [Pharo-users] Group and member with Voyage

2013-08-30 Thread Esteban A. Maringolo
Hi James, Thanks for your response. You are right, the Pattern is quite common, if not ubiquous in all systems. My particular question is related with Voyage+MongoDB, and also could apply to Magritte (given the fact Voyage "inherits" its descriptions model). I sucessfully implemented this patter

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Sabine Knöfel
So, I will wait and till then, use the solution of Jan. Thank you, Jan for the file in. Sabine -- View this message in context: http://forum.world.st/voyage-mongo-randomly-wrong-OIDs-tp4705396p4705821.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Sven Van Caekenberghe
On 30 Aug 2013, at 16:35, Esteban Lorenzano wrote: > > On Aug 29, 2013, at 5:08 PM, Sven Van Caekenberghe wrote: > >> >> On 29 Aug 2013, at 16:51, Esteban Lorenzano wrote: >> >>> hi >>> >>> well... I've never been happy on using the UUID generator for my keys, but >>> is the fastest opti

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Esteban Lorenzano
Hi, One idea (not sure if it will work) You can take Time primUTCMicrosecondsClock when system start, then increase it sequentially. most probably that will ensure uniqueness while providing fast ids. but of course, that depends, you need to check in your system. I'm thinking on provide

Re: [Pharo-users] Benchmark

2013-08-30 Thread Esteban Lorenzano
yes, it was just a proof of concept, waiting for their own dedicated machine(s) On Aug 30, 2013, at 7:03 PM, Clément Bera wrote: > However benchmark on the CI are not on a dedicated machine so it is not very > reliable > > > 2013/8/30 Camillo Bruni > That you just need to run it from th

Re: [Pharo-users] Benchmark

2013-08-30 Thread Clément Bera
However benchmark on the CI are not on a dedicated machine so it is not very reliable 2013/8/30 Camillo Bruni > That you just need to run it from the command line which is not related to > the benchmark project. > Currently it seems like the ci has some troubles, so I cannot get to the > c

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Sabine Knöfel
"Sorry for the discussion" for me, this discussion is interesting and important because I need a solution. :-) Thank you for the discussion! I tried following ideas but they have been up to 4 times slower than the original: 1) I tried to remember the last seed in an inst var of UUIDGenerator and

Re: [Pharo-users] Benchmark

2013-08-30 Thread Natalia Moskovchuk
Thanks. I already saw this video. I cann't see configuration on https://ci.inria.fr/rmod/job/FullTextSearch/configure . Can you share it? -- View this message in context: http://forum.world.st/Benchmark-tp4705781p4705818.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.c

Re: [Pharo-users] Benchmark

2013-08-30 Thread Camillo Bruni
That you just need to run it from the command line which is not related to the benchmark project. Currently it seems like the ci has some troubles, so I cannot get to the configuration either. On 2013-08-30, at 17:25, Natalia Moskovchuk wrote: > Thanks. I already saw this video. I cann't see

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Esteban Lorenzano
yes, is a conversation geeky enough to be fun :) unix: https://github.com/pharo-project/pharovm/blob/master/platforms/unix/plugins/UUIDPlugin/sqUnixUUID.c mac: https://github.com/pharo-project/pharovm/blob/master/platforms/iOS/plugins/UUIDPlugin/sqMacUUID.c win: https://github.com/pharo-proj

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Esteban Lorenzano
On Aug 30, 2013, at 4:49 PM, Sven Van Caekenberghe wrote: > > On 30 Aug 2013, at 16:35, Esteban Lorenzano wrote: > >> >> On Aug 29, 2013, at 5:08 PM, Sven Van Caekenberghe wrote: >> >>> >>> On 29 Aug 2013, at 16:51, Esteban Lorenzano wrote: >>> hi well... I've never been

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Sven Van Caekenberghe
On 30 Aug 2013, at 16:54, Esteban Lorenzano wrote: > > On Aug 30, 2013, at 4:49 PM, Sven Van Caekenberghe wrote: > >> >> On 30 Aug 2013, at 16:35, Esteban Lorenzano wrote: >> >>> >>> On Aug 29, 2013, at 5:08 PM, Sven Van Caekenberghe wrote: >>> On 29 Aug 2013, at 16:51, Esteb

Re: [Pharo-users] voyage/mongo randomly wrong OIDs

2013-08-30 Thread Esteban Lorenzano
On Aug 29, 2013, at 5:08 PM, Sven Van Caekenberghe wrote: > > On 29 Aug 2013, at 16:51, Esteban Lorenzano wrote: > >> hi >> >> well... I've never been happy on using the UUID generator for my keys, but >> is the fastest option I found. >> There are, of course, alternatives: >> >> 1) Usin

Re: [Pharo-users] get.pharo.org and sources files

2013-08-30 Thread Sven Van Caekenberghe
They are included in each vm download, but maybe it would be good to offer them separately too. On 30 Aug 2013, at 15:54, Norbert Hartl wrote: > Is there a url for get.pharo.org to obtain sources files? I struggle to find > it! > > thanks, > > Norbert

Re: [Pharo-users] get.pharo.org and sources files

2013-08-30 Thread Norbert Hartl
Am 30.08.2013 um 16:04 schrieb Sven Van Caekenberghe : > They are included in each vm download, > but maybe it would be good to offer them separately too. > Indeed. If not I would like to know what people do after they downloaded only the image. Norbert > On 30 Aug 2013, at 15:54, Norbert Ha

Re: [Pharo-users] [ANN] Aida 6.6 Web Framework Released

2013-08-30 Thread Sven Van Caekenberghe
On 30 Aug 2013, at 15:47, Janko Mivšek wrote: > Dear Pharoers, > > New version of Aida/Web framework and application server > (http://www.aidaweb.si) is here with: > > - optimization on HTTP level to send first byte to the client as soon >as possible > - streaming of HTML, specially head

Re: [Pharo-users] get.pharo.org and sources files

2013-08-30 Thread Marcus Denker
On Aug 30, 2013, at 3:54 PM, Norbert Hartl wrote: > Is there a url for get.pharo.org to obtain sources files? I struggle to find > it! > http://files.pharo.org/sources/ on get.pharo.org the sources file is in the vm bundle… Marcus signature.asc Description: Message signed with Op

Re: [Pharo-users] get.pharo.org and sources files

2013-08-30 Thread Yuriy Tymchuk
http://files.pharo.org/sources//PharoV20.sources.zip Cheers! Uko On 30 серп. 2013, at 16:54, Norbert Hartl wrote: > Is there a url for get.pharo.org to obtain sources files? I struggle to find > it! > > thanks, > > Norbert

[Pharo-users] get.pharo.org and sources files

2013-08-30 Thread Norbert Hartl
Is there a url for get.pharo.org to obtain sources files? I struggle to find it! thanks, Norbert

[Pharo-users] [ANN] Aida 6.6 Web Framework Released

2013-08-30 Thread Janko Mivšek
Dear Pharoers, New version of Aida/Web framework and application server (http://www.aidaweb.si) is here with: - optimization on HTTP level to send first byte to the client as soon as possible - streaming of HTML, specially header to get first byte out immediately, - gzip compression

Re: [Pharo-users] Benchmark

2013-08-30 Thread Sebastian Tleye
Hi Natalia, Here you have an interesting video http://vimeo.com/68494202 and a repository http://smalltalkhub.com/#!/~StefanMarr/SMark 2013/8/30 Natalia Moskovchuk > Hello. > I want to use the benchmarks in my GSoC project. Can somebody write or > suggest me some resources about how could I

[Pharo-users] Benchmark

2013-08-30 Thread Natalia Moskovchuk
Hello. I want to use the benchmarks in my GSoC project. Can somebody write or suggest me some resources about how could I run written benchmarks on CI server and get there information? Best regards, Natalia

Re: [Pharo-users] Postmark email library

2013-08-30 Thread Stéphane Ducasse
On Aug 30, 2013, at 9:45 AM, vmusulainen wrote: > Sure! > > I use pharo 2.0 (21.0) > > Attempt 1. > > Use http://ss3.gemstone.com/ss/postmark.html at "Getting the code/Gofer" > > Gofer new >repository: 'http://ss3.gemstone.com/ss/postmark'; >package: 'ConfigurationOfPostMark'; >p

Re: [Pharo-users] Postmark email library

2013-08-30 Thread vmusulainen
Sure! I use pharo 2.0 (21.0) Attempt 1. Use http://ss3.gemstone.com/ss/postmark.html at "Getting the code/Gofer" Gofer new repository: 'http://ss3.gemstone.com/ss/postmark'; package: 'ConfigurationOfPostMark'; package: 'PostMark-Core'; package: 'PostMark-Tests'; load DoIt a