[SqueakDBX] Re: Gofer for GlorpDBX

Mariano Martinez Peck marianopeck at gmail.com
Sun Jan 10 19:56:09 UTC 2010


On Sun, Jan 10, 2010 at 5:51 PM, John Toohey <jt at parspro.com> wrote:

> Thanks, this is what I wanted. It takes time to build a new image from
> scratch, so I want to use Gofer to install Seaside, Glorp, my code etc. I
> wanted to get a script that was tested and would give me the latest builds.
> Just wondering if you have an benchmarks on using the Native driver with the
> GlorpDBX. I'm going into production soon, and still am not sure what way to
> go.
>
>
Hi John. There are becnhmarks for SqueakDBX agains native drivers, but not
related with GlorpDBX. Although, if one driver is faster, it make sense that
GLorp is faster too using that driver.

The SqueakDBX benchmarks  were of the first things we did when we start
SqueakDBX. You can read this link: http://www.squeakdbx.org/Benchmarks

You can run them by yourself and compare.

Ask if you need help with that :)

Cheers

Mariano


>
> On Sat, Jan 9, 2010 at 17:41, Mariano Martinez Peck <marianopeck at gmail.com
> > wrote:
>
>>
>>
>> On Sat, Jan 9, 2010 at 11:24 PM, John Toohey <jt at parspro.com> wrote:
>>
>>> Have you made a Gofer script to install the latest GloprDBX and Postgres
>>> driver on the latest RC1 Pharo images? I'm trying to create a full Gofer
>>> script that will build my entire app from a Pharo DEV image.
>>>
>>>
>> Hi John. I didn't wrote any Gofer plugin and I even don't have it in mind.
>> The future of SqueakDBX and GlorpDBX packages managment will be with
>> Metacello.
>>
>> So far, you have in the repository MetacelloRepository in squeakspurce,
>> two packages: ConfigurationOfSqueakDBX and ConfigurationOfGlorpDBX. The
>> second one, right now it install GlorpDBX and the SqueakDBX driver, NOT the
>> PostgreSQL native driver. If this is what you want, maybe I can add a group
>> to metacello conf.
>>
>> Right now, to install SqueakDBX you have to evaluate:
>>
>> Gofer new
>>     squeaksource: 'MetacelloRepository';
>>     package: 'ConfigurationOfSqueakDBX';
>>     load.
>>
>> ((Smalltalk at: #ConfigurationOfSqueakDBX) project version: '1.0') load.
>>
>>
>> And for GlorpDBX:
>>
>> Gofer new
>>     squeaksource: 'MetacelloRepository';
>>     package: 'ConfigurationOfGlorpDBX';
>>     load.
>>
>> ((Smalltalk at: #ConfigurationOfGlorpDBX) project version: '1.0') load.
>>
>> If you really need to load GlorpDBX with Postgresql native driver, than I
>> can create a group so that you will be able to evaluate:
>>
>> ((Smalltalk at: #ConfigurationOfGlorpDBX) project version: '1.0') load:
>> 'GlorpDBXWithNativePostgreSQLNativeDriver'
>>
>> Do you need that?
>>
>> In addition, the loaders we wrote some time ago, should be running:
>>
>> Gofer new
>>     squeaksource: 'Glorp';
>>     package: 'ConfigurationOfGlorpDBX';
>>     load.
>>
>> GlorpPharoLoader loadGlorpWithNativePostgreSQLDriver
>>
>>
>>
>> --
>>> -JT
>>>
>>>
>>>
>>
>
>
> --
> -JT
>
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/squeakdbx/attachments/20100110/828b0702/attachment.htm


More information about the SqueakDBX mailing list