The Artima Developer Community
Sponsored Link

Agile Buzz Forum
Monticello 2

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
James Robertson

Posts: 29924
Nickname: jarober61
Registered: Jun, 2003

David Buck, Smalltalker at large
Monticello 2 Posted: Jun 28, 2005 7:56 PM
Reply to this message Reply

This post originated from an RSS feed registered with Agile Buzz by James Robertson.
Original Post: Monticello 2
Feed Title: Cincom Smalltalk Blog - Smalltalk with Rants
Feed URL: http://www.cincomsmalltalk.com/rssBlog/rssBlogView.xml
Feed Description: James Robertson comments on Cincom Smalltalk, the Smalltalk development community, and IT trends and issues in general.
Latest Agile Buzz Posts
Latest Agile Buzz Posts by James Robertson
Latest Posts From Cincom Smalltalk Blog - Smalltalk with Rants

Advertisement

2 pm, post lunchtime slump - time for Colin Putney to tell us about Monticello (version 2), a source code control system for Squeak. Here's Colin getting ready to start:

Colin Putney

When they started Monticello, they realized that typical version control systems wasn't what they needed for their purposes. Merging was crucial, because - given the nature of the Squeak community - there's a big need to merge code from disparate sources. The first rev of Monticello didn't actually do a lot more than merges.

Colin is discussing the hard problem of merging branches of code, and the kinds of approaches that are possible. The problem gets harder, of course, as the branches diverge over time. They took an approach of recording the ancestry of methods over time so that they can merge at the method level in an image, rather than at the package level.

A Smalltalk specific issue for a version control system - how to update (safely) a running system. In Store, you can run into this issue if you save your package as source (rather than binary), and then load a package from PostGreSQL that modifies sockets. Whoops - the PostGreSQL connect uses sockets. Solution - save the package binary. The better answer is one that Monticello is moving to, and Store is also moving to: compile the code in a sandbox, and then do an atomic load.

They ran into the problem due to some performance issues inherent in the way they were versioning code. The basic stuff -

  • Elements (code artifacts)
  • Versions (of elements)
  • Slice (A collection of elements)

Read: Monticello 2

Topic: Cincom Partners with Knowledge Systems Previous Topic   Next Topic Topic: Side note on consumer interaction

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use