<div dir="ltr">Hi Philip,<div><br></div><div>as someone who has worked a bit on filetree, I'd say there are no philosophical differences. Just implementation compromises with the way Smalltalk has to deal with the world outside of the image for storing code.</div><div><br></div><div>For example, Tonel has been introduced to solve issues with filetree: the fact filetree generates too many files creating performance issues with the host filesystem implementation (and issues with the poor support of Windows long paths in the virtual machines), and losing space because the files are small (and that current storage tech has solved its performance issues with large files by forcing a large minimum allocation size). Filetree is itself a compromise to have a different fit with current version management systems (git, for example). As I said, just implementation compromises(*), no philosophy behind that.</div><div><br></div><div>If there is a philosophical difference, I would say that there is only one: declarative or imperative storage format. Traditiional Smalltalk is imperative... you don't load code, you execute a program. Newer formats like filetree or tonel, or probably the database-oriented ones (VW, Magma) are more declarative in nature (but have still imperative parts).</div><div><br></div><div>The picture grows more complex if you consider what are version control systems. They are in fact databases (even git), so a more natural fit for Smalltalk would be an object persistency layer used with code objects (VW, again. Gemstone?).</div><div><br></div><div>To give you an idea of how that looks, for all formats:</div><div><br></div><div>In Smalltalk, you have code as an object graph (class, CompiledMethod instances, etc...) with an optimisation to store the text (the sources and changes files). When you save, you iterate over that object graph and convert it to a file / multiple files. Then you interact with your version control system to record the files (either automatically or manually). Then your version control system store your changes into a database, as a set of objects...</div><div><br></div><div>This also explains why you have those Smalltalk to database for storing code implementations: avoid that file layer that is extremely annoying.</div><div><br></div><div>Thierry</div><div><br></div><div>(*) For example, the last version of GitFileTree, a git-enabled filetree, never manipulates any files in Smalltalk. Git does file operations but only as a kind of user interface layer, to allow users to solve conflicts.</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le jeu. 29 août 2019 à 10:26, Philip Bernhart via Cuis-dev <<a href="mailto:cuis-dev@lists.cuis.st" target="_blank">cuis-dev@lists.cuis.st</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi Hernan,<br>
<br>
could you find out the philosophical differences regarding<br>
the "new" package formats like filetree or tonel?<br>
<br>
If yes, what are they? I'm curious why thinks are supposed to<br>
be better the way pharo and visual works (?) went.<br>
<br>
<br>
Thanks for your time,<br>
Philip<br>
<br>
Hernan Wilkinson via Cuis-dev <<a href="mailto:cuis-dev@lists.cuis.st" target="_blank">cuis-dev@lists.cuis.st</a>> writes:<br>
<br>
> well well well, even I do admire you and so on, I would not call it a<br>
> date 😜😜<br>
> (we are starting to have fun!!)<br>
><br>
> On Wed, Jul 31, 2019 at 4:44 PM Dale Henrichs via Cuis-dev <<br>
> <a href="mailto:cuis-dev@lists.cuis.st" target="_blank">cuis-dev@lists.cuis.st</a>> wrote:<br>
><br>
>> Hernan,<br>
>><br>
>> Excellent! It's a date then:)<br>
>><br>
>> Dale<br>
>> On 7/31/19 12:32 PM, Hernan Wilkinson via Cuis-dev wrote:<br>
-- <br>
Cuis-dev mailing list<br>
<a href="mailto:Cuis-dev@lists.cuis.st" target="_blank">Cuis-dev@lists.cuis.st</a><br>
<a href="https://lists.cuis.st/mailman/listinfo/cuis-dev" rel="noreferrer" target="_blank">https://lists.cuis.st/mailman/listinfo/cuis-dev</a><br>
</blockquote></div>