Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
perlyking #1
File buffering with CFCONTENT
Does anyone know how exactly <cfcontent> works when 'streaming' files back to
the client?
I have an application that uses <cfcontent> to deliver files securely from an
area on the server file system outside the document root.
e.g.
<cfif permissions and security checks are ok...>
<cfheader blah ...>
<cfcontent type="application/unknown" file="/path/to/large/file"
deletefile="no">
Is the file read into RAM as a whole before the download begins, or are
sequential chunks read from disk, buffered, and passed to the client?
This is an important issue for me because I need to stream large files
(200mb+) and I don't want multiple concurrent downloads to kill the server.
perlyking Guest
-
Serverside Buffering ???
Hello Forum Members, We have a problem with LiveStreaming and Lost Packages. In our company we broadcast live streaming events in wmedia and... -
Buffering Notification
'NetStream.Buffer.Empty' is a message sent from a netStream's information status...using this I can if(info.code == "NetStream.Buffer.Empty"){... -
cfcontent and PDF file summary information
How can i add title, author and subject into the PDF file summary information thanks -
Using CFHeader and CFContent to control file downloads
I am programming a CF application for an online university. They need to be able to upload files to the server, and then authorize students... -
double buffering ?
Hi, Is there a way to do something like double buffering in Java. I have a 3D sprite with a lot of models. I preload and initialize the whole 3D... -
Pete Thomas #2
Re: File buffering with CFCONTENT
Not absolutely sure about cfcontent but I would guess it is the similar
mechanism to that of cffile where the data is a java inputstream and is not
buffered into RAM I guess a good way to find out would be to deliver a very
large file and look at your memory usage. I suspect it will be good
Pete Thomas Guest



Reply With Quote

