VLX or FAS file?

Anonymous

VLX or FAS file?

Anonymous
Not applicable
What is the difference between a VLX file and a FAS file? Which one is better? Thanks
0 Likes
Reply
725 Views
3 Replies
Replies (3)

Anonymous
Not applicable
? does it really matter? Although this has been answered before, titled the same.... If you're thinking about security, then I must reply, nothing isn't secure enough, and if you're talking about performance, with these new systems coming out, I don't think it really matters, 2004 has a bare min. system requirement... "ChrisW" wrote in message news:407b14c5$1_1@newsprd01... > What is the difference between a VLX file and a FAS file? Which one is > better? Thanks > >
0 Likes

Anonymous
Not applicable
On Mon, 12 Apr 2004 17:14:29 -0500, "ChrisW" wrote: >What is the difference between a VLX file and a FAS file? Which one is >better? Thanks FAS files are simply compiled LSP source files. You would load them singly just as you would with LSP files. VLX files are more Application oriented; they can contain multiple source files, including LSP, FAS and even DCL files. When you load the single VLX, you load the whole shebang, which is nice for packaging. Matt mstachoni@comcast.net mstachoni@bhhtait.com
0 Likes

Anonymous
Not applicable
Different purposes, as Matt says. The VLX can can include multiple files. I've used them for simplicity, by compiling a number of small lsp files into one vlx, and autoloading it when any one of the lisp commands are used. Depending on hardware etc. there is a limit to how big you want this to be -- I don't include *every* lisp in one file as it would take forever to load. But I do group together lisps that have similar functions into one vlx. On our (very slow) computers, a vlx of 20 to 40 KB doesn't have a noticeable load time, and it might encompass 10 or 20 very small lisps. I still maintain the source code in separate lisp files. If one changes, I simply "rebuild" the application. The only advantage of this is fewer files to keep track of. Instead of multiple fas files, there's one vlx.
0 Likes