Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: ftp question

From: sterling:rebol at: 31-Oct-2002 11:04

By default, REBOL will cache the last 5 ftp connections you have made. As you make new ones the least recently used will be closed. If you want to change the number of cached connections or just to have your single connection closed immediately, you have this control by changing: system/schemes/ftp/cache-size It is set to 5 by default. Setting this to 0 will close all ftp sessions immediately after use. It sounds like that's what you want. Sterling