Re: Getting basic CF8 CFCACHE working in CF9

2011-05-15 Thread Terry Ford
Thanks for the reply Ray. Other attributes seemingly do nothing too, or don't work as expected. I've discovered that page-caching (CF8's default behavior) is possible through ehcache, but there's a surprising lack of information on how to implement it to mimic CF8.

Re: Getting basic CF8 CFCACHE working in CF9

2011-05-14 Thread Raymond Camden
it means cache a fragment. > 3. Third, and most frustratingly, how do you CFCACHE to disk?  I'm using this > statement in CF9: > I see the same. This looks like a bug unfortunately. Please log a report. If you absolutely want file based caching, you could do it manually of cours

Getting basic CF8 CFCACHE working in CF9

2011-05-13 Thread Terry Ford
Hey... I am trying to get a CF8 app working on CF9, and it was all seamless until I ran into CFCACHE. I'm having problems getting CFCACHE to save anything to disk. I understand the "default" behavior is now in-memory caching, but for now I'm just trying to get this thi

Re: CFCACHE and the Dreaded Quirks Mode

2011-03-02 Thread Dave Watts
e have suggested to use > before you use cfcache to remove the html comment but that doesn't > work for me. > > Any workaround ideas would be great. How about using CFCONTENT with the RESET attribute? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figl

CFCACHE and the Dreaded Quirks Mode

2011-03-02 Thread Rick Root
Sending this to cf-talk on behalf of my coworker... -- Forwarded message -- From: Nate Date: Wed, Mar 2, 2011 at 10:39 AM Subject: [tacfug] CFCACHE and the Dreaded Quirks Mode To: TACFUG Does anyone have a fix for this? Coldfusion is inserting an html comment before any other

Re: cfcache security issue?

2010-07-16 Thread Matthew Gersting
Spencer, If by chance your site is using Fusebox, you may want to look into Fusecache (fusecache.riaforge.comand, yes, a little self-promotional). It basically just sits on top and uses Memcached (on CF8...CF9 can use Memcached or EHCache). ~~~

Re: cfcache security issue?

2010-07-16 Thread Dave Watts
> We are considering implementing cfcache on our busy site (CF8), but as I > understand it, CFMX creates a page on disk for every unique set of URL > variables. That's correct. > So what stops a malicious attacker performing an attack where they just flood > a > cache

Re: cfcache security issue?

2010-07-16 Thread Judah McAuley
and he was worried about caching in general. Cheers, Judah On Fri, Jul 16, 2010 at 10:40 AM, Dave Watts wrote: > >> You can set the maximum number of cached templates in the CF >> Administrator. > > I don't think the maximum number of cached templates affects CFCACHE. &g

Re: cfcache security issue?

2010-07-16 Thread Dave Watts
> You can set the maximum number of cached templates in the CF > Administrator. I don't think the maximum number of cached templates affects CFCACHE. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Sma

Re: cfcache security issue?

2010-07-16 Thread Judah McAuley
You can set the maximum number of cached templates in the CF Administrator. If you want to specifically cache a static html rendering with cfcache tag and you are worried about a directory filling up, I'd A) set an expiration on your item cache and B) write a task that monitors the

Re: cfcache security issue?

2010-07-16 Thread Spencer K
Sorry, I should have been clearer -- we need to cache page contents to disk. If cfcache is fundamentally limited and open to such attacks, can anyone suggest an efficient and robust page-caching tag that we can use with CF8? Thanks From: Brian Kotek To

Re: cfcache security issue?

2010-07-16 Thread Brian Kotek
Use action="clientcache"? On Fri, Jul 16, 2010 at 12:11 PM, Spencer K wrote: > > Hi cfers, > > We are considering implementing cfcache on our busy site (CF8), but as I > understand it, CFMX creates a page on disk for every unique set of URL > variables. > >

cfcache security issue?

2010-07-16 Thread Spencer K
Hi cfers, We are considering implementing cfcache on our busy site (CF8), but as I understand it, CFMX creates a page on disk for every unique set of URL variables. So what stops a malicious attacker performing an attack where they just flood a cached page with unique URLs? mycached.cfm?id

Re: cfcache - doesn't work

2008-08-15 Thread Jeff Becker
I'm just dumb. We were caching in a different directory then the default (default=cf_root/cache). now works. :) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://

cfcache - doesn't work

2008-08-15 Thread Jeff Becker
Why doesn't this work? I know the code is running and I know the URL matches. Hmmm ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/cl

Re: cfcache problem

2007-09-21 Thread Brian Kotek
Yes, Ray's tag also stores things in memory (in fact I think CFACCELERATE was based on Ray's tag). What I meant to say regarding performance was that when Brandon (and Ray as well I beleive) testing their in-memory caching against CFCACHE, the difference in speed was measured in

RE: cfcache problem

2007-09-21 Thread Dave Watts
> I'm not sure, but if I recall correctly CFCACHE still writes > temp files to the file system and reads them back each time, > which doesn't perform very well under load. Actually, reading the files from disk does perform quite well under load. It's creating the files

Re: cfcache problem

2007-09-21 Thread Brian Kotek
I'm not sure, but if I recall correctly CFCACHE still writes temp files to the file system and reads them back each time, which doesn't perform very well under load. Have a look at Ray's scopecache custom tag. I looked around for it and the only link I could find was in the SVN re

cfcache problem

2007-09-20 Thread Richard Steele
The first line of code in my cfm page is This works most of the time, but occasionally I get an error. Failed to add HTML header. What am I missing here? Thanks in advance. ~| ColdFusion is delivering applications solutions a

Re: <cfcache producing connection failure.

2007-08-25 Thread NUGROHO NOTO
Thanks Dave. your guess was right. > the server can't resolve the hostname used to make the requests. You > can test this by pinging the hostname in question from the server > console. If you can't access the server console, you can use CFEXECUTE > to test this. after I put my own ip address

Re: cfcache and searches

2007-07-11 Thread Rixon Reed
t returns >> no entries. I should think it would simply retrieve the page >> that was saved in the cache that included all of the entries, >> but it didn't. > >For CFCACHE to identify your search result page, you need to embed the data >submitted from your form

RE: cfcache and searches

2007-07-11 Thread Dave Watts
simply retrieve the page > that was saved in the cache that included all of the entries, > but it didn't. For CFCACHE to identify your search result page, you need to embed the data submitted from your form within the URL. CFCACHE doesn't let you use form data to identify cac

cfcache and searches

2007-07-11 Thread Rixon Reed
Is it possible to cache search results? For example, if someone puts a keyword Tokyo in our search input box and clicks go, it retrieves tons of entries. If I add to the action page for the query, it returns no entries. I should think it would simply retrieve the page that was saved in the c

RE: i hope they fix cfcache in scorpio

2007-03-22 Thread Kevin Aebig
they fix cfcache in scorpio > Dear the CF Product team, > > Please make sure the cfcach'ed pages do not have an HTML > comment as the first line in the cfcach'ed page. That' breaks CSS. If you want to report features or bugs, you're more likely to get the result

RE: i hope they fix cfcache in scorpio

2007-03-22 Thread Dave Watts
> Dear the CF Product team, > > Please make sure the cfcach'ed pages do not have an HTML > comment as the first line in the cfcach'ed page. That' breaks CSS. If you want to report features or bugs, you're more likely to get the result you want if you use the channel they provide. http://www.ado

i hope they fix cfcache in scorpio

2007-03-22 Thread Jonathan Block
Dear the CF Product team, Please make sure the cfcach'ed pages do not have an HTML comment as the first line in the cfcach'ed page. That' breaks CSS. Thank you, Jon ~| Deploy Web Applications Quickly across the enterprise with

RE: Using cfcache

2007-01-22 Thread Dave Watts
> Do any of you use cfcache? I am inheriting a site that uses > it everywhere, even on pages that change every 30 seconds or > more (its an auction type site, so every bid would change the > page) In my experience, I try to optimize the DB and my > queries and processing to

Using cfcache

2007-01-22 Thread Peterson, Chris
Just a quick q to toss out this morning. Do any of you use cfcache? I am inheriting a site that uses it everywhere, even on pages that change every 30 seconds or more (its an auction type site, so every bid would change the page) In my experience, I try to optimize the DB and my queries and

RE: CFcache how to clear browser cache

2007-01-05 Thread Michael E. Carluen
D, Try using: to force a clientside browser refresh instead. Hth. > -Original Message- > From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] > Sent: Friday, January 05, 2007 10:50 AM > To: CF-Talk > Subject: Re: CFcache how to clear browser cache > > CFCACHE is s

Re: CFcache how to clear browser cache

2007-01-05 Thread Pete Ruckelshaus
CFCACHE is server-side. There is nothing that can be done to explicitly clear the client browser cache via a web page. Try using something like this: which will force the browser to go to the server to get the page, rather than drawing from the browser cache. On 1/5/07, [EMAIL PROTECTED

CFcache how to clear browser cache

2007-01-05 Thread coldfusion . developer
All, I've got an application that changes images and when the page refreshes, the image change doesn't replace the original and show up until I refresh the page. So I'm trying to clear the browser cache with cfcache, but it's not working. Any

CFCACHE

2006-12-14 Thread Dave Phillips
Hi, I've worked with CF for 9 years but never worked with CFCACHE. I'm working on MX 6.1 right now. I just added to the top of my module. When I run it, I get an empty screen. If I add the closing / to the end of the tag like this , I still get the same thing. If I remove t

Re: Unusual CFCACHE Problem

2006-10-19 Thread Stephen Whiteley
Yes, it will, but does one cache the time? on the other doesn't when you press refresh ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to

Re: Unusual CFCACHE Problem

2006-10-19 Thread Stephen Whiteley
Yes, but does it cache if you press refresh, on one the time will stop cos its cached, on the other it doesn't thanks steve >> ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusio

Re: Unusual CFCACHE Problem

2006-10-19 Thread Ben Koshy
t; Sent: Thursday, October 19, 2006 9:51 PM Subject: Unusual CFCACHE Problem > Hi > > I've got a problem is which killing me slowly. CFCACHE on one of my > domains has stopped working. I can get it to work using the ip address for > the domain, but if I use the dom

Unusual CFCACHE Problem

2006-10-19 Thread Stephen Whiteley
Hi I've got a problem is which killing me slowly. CFCACHE on one of my domains has stopped working. I can get it to work using the ip address for the domain, but if I use the domain name it doesn't work. http://63.134.204.53/cache/cachetest.cfm - This works http://www.

Re: cfcache adds comment on first line of cfcache''d page.. my css doesn''t work now.

2006-08-15 Thread alex baban
>any fix to this? Extremely annoying. Having to schedule a job to >look for new cache files then update the .tmp files just shouldnt have >to be... > >On 11/16/05, Jon Block <[EMAIL PROTECTED]> wrote: >> don't call the cached page direct, call another page first, in the new page use cfhttp to c

Re: cfcache adds comment on first line of cfcache'd page.. my css doesn't work now.

2006-07-24 Thread Rick Schmitty
any fix to this? Extremely annoying. Having to schedule a job to look for new cache files then update the .tmp files just shouldnt have to be... On 11/16/05, Jon Block <[EMAIL PROTECTED]> wrote: > I need help trying to find out how to make my doctype work right with > cfcache. Ta

cfcache and balnk pages

2006-03-23 Thread Phill B
When I call to a page with the cfcache tag for the first time, it loads blank. Is this normal behaviour for page caching on CFMX 6? -- Phil ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:236042 Archives: http

RE: CFCACHE

2005-12-01 Thread Brian Peddle
As an FYI I ended up using this tag http://www.electricsheep.co.nz/products/customtags/view.cfm?&name=cf_cache And it has worked perfectly. -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 12:10 PM To: CF-Talk Subject: CFCACHE If I

RE: CFCACHE

2005-12-01 Thread Snake
CFCAHE will only cache entire pages. If you want to cache portions of a page try cf_turbocache -Original Message- From: Brian Peddle [mailto:[EMAIL PROTECTED] Sent: 01 December 2005 17:10 To: CF-Talk Subject: CFCACHE If I have a page with 5 includes lets say and I use CFCACHE on one

CFCACHE

2005-12-01 Thread Brian Peddle
If I have a page with 5 includes lets say and I use CFCACHE on one include will it attempt to cache all the stuff below it or just that one include file? To let you know what I am doing in a header file we have to CFHTTP to another site to pull some content that a client is always changing. We

cfcache adds comment on first line of cfcache'd page.. my css doesn't work now.

2005-11-16 Thread Jon Block
I need help trying to find out how to make my doctype work right with cfcache. Take a look at the following comment I found on the CFCACHE docs. I need to find out how to circumvent this problem. - http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-pa8.htm jsm said on Aug 9, 2005

Re: cfcache doesn't lock for simultaneous requests?

2005-09-16 Thread S . Isaac Dealey
My understanding is that cfcache is pretty rudimentary actually... the cache isn't stored until the page finishes loading, then once it's loaded subsequent request use the cache, so if you have 2 simultaneous (or overlapping) requests for the same cache, then they'll both build t

cfcache doesn't lock for simultaneous requests?

2005-09-16 Thread Jon Gunnip
I'm using cfcache for a page that takes 30 seconds to generate. This is the behavior I'm seeing: Time 0: request #1 comes in, generating page Time 15s: request #2, starts generating page Time 30s: request #1 finishes Time 45s: request #2 finishes I would think that the second reques

CFCACHE produces blank page on the first load.

2004-07-29 Thread Wes
When I use the cfcache tag to cache a page on the server, on any pages fist load, the server returns a blank white page.  A view source of that page shows a generic HTML page that includes the HTML, HEAD, and BODY tags that contain no data.  This HTML that is produced is not anywhere in my code

Re: Flushing CFCACHE

2004-06-11 Thread Philip Arnold
On Fri, 11 Jun 2004 11:40:26 -0400, Robert Shaw wrote: > > Is there a method for flushing individual pages from trusted cache within > CFMX? There is a programatic way to do it in CF5, but I've not seen code to do the same for MX [Todays Threads] [This Message] [Subscription] [Fast Unsubsc

RE: Flushing CFCACHE

2004-06-11 Thread Dave Watts
> Subject: Flushing CFCACHE > > Is there a method for flushing individual pages from trusted > cache within CFMX? Yes, you can flush pages from trusted cache: 1. Disable Trusted Cache. 2. Run the page. 3. Enable Trusted Cache. It's worth pointing out that Trusted Cache

RE: Flushing CFCACHE

2004-06-11 Thread Tony Weeg
restart server ;) -Original Message- From: Robert Shaw [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 11:40 AM To: CF-Talk Subject: Flushing CFCACHE Is there a method for flushing individual pages from trusted cache within CFMX? TIA, Robbie [Todays Threads] [This Message

Flushing CFCACHE

2004-06-11 Thread Robert Shaw
Is there a method for flushing individual pages from trusted cache within CFMX? TIA, Robbie [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Matt Liotta
> What was the server running on, an ipaq?  ;-) > Take any Windows-based server no matter how powerful and place a lot of files in a single directory. You will see quickly that it doesn't matter how powerful the server is if the filesystem doesn't scale. BTW, this doesn't just affect Windows fil

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Matt Liotta
> Can you expand on this?  That must have been one insanely big site.   > Can you share some numbers? > There were over 1 million class files in the directory. As you know, UDFs generate their own class files, so for a large application that is function heavy a lot of class files are generated.

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Brook Davies
till get a connection failure. Do I need to Reboot after doing that? Brook At 01:53 PM 1/8/2004, you wrote: >What was the server running on, an ipaq?  ;-) > > >-DBK > >   _ > >From: Christian Cantrell [mailto:[EMAIL PROTECTED] >Sent: Thursday, January 08, 2004 4:51 PM >

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Katz, Dov B (IT)
What was the server running on, an ipaq?  ;-) -DBK   _   From: Christian Cantrell [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 4:51 PM To: CF-Talk Subject: Re: CFCACHE parts of pages without cfhttp On Thursday, January 8, 2004, at 02:26  PM, Matt Liotta wrote

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Christian Cantrell
On Thursday, January 8, 2004, at 02:26  PM, Matt Liotta wrote: > Have you ever seen an application with so many CF generated > class files that the server can't even handle a request? Can you expand on this?  That must have been one insanely big site.   Can you share some numbers? Christian [To

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Matt Liotta
> But CF rarely has to look in that directory.  Pretty much only on > server > startup, because the classes are all cached in memory.  And the > timestamps > of the class files don't need to be checked (I can't imagine they > didn't > expose this through their ClassLoader), only the source files

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Barney Boisvert
s, which are in directories unless the app developers are insane. Cheers, barneyb > -Original Message- > From: Matt Liotta [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 08, 2004 10:54 AM > To: CF-Talk > Subject: Re: CFCACHE parts of pages without cfhttp > > D

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Matt Liotta
Did you mention that to the CFMX team when they decided to put hundreds of class files in a single directory? -Matt On Jan 8, 2004, at 12:37 PM, Brandon Purcell wrote: > Be careful when using the filesystem make sure you do not store > hundreds of files in a single directory.  I found that the

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Katz, Dov B (IT)
The code I posted actually does what CFCACHE does  (at least i think thats what cfcache does)-- creates a subfolder in each directory through which it is called. As long as all my code doesn't lie in the same place on the server, I'm getting that split-up automatically. Thanks f

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Massimo Foti
> I've also > taken a look at how caching is handled in asp.net, and it is... very... > very... sweet. You have a built-in cache scope that allows you to do things > like, "Make this cached item depend on another, so if the other guy is > cleared, clear me", as well as "Call X on removal from cache

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Katz, Dov B (IT)
lk Subject: RE: CFCACHE parts of pages without cfhttp Ah, these do sound like good reasons to employ the file system. The original tag I based mine on, from the Spectra days, also allowed for file based or RAM based caching. Probably something I need to add to mine. :) I've also taken a lo

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Raymond Camden
Ah, these do sound like good reasons to employ the file system. The original tag I based mine on, from the Spectra days, also allowed for file based or RAM based caching. Probably something I need to add to mine. :) I've also taken a look at how caching is handled in asp.net, and it is... very... v

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Raymond Camden
> There are already similar custom tags around, like > "CF_SuperCache" (check the Exchange) or "CF_Accelerate": > > http://www.bpurcell.org/blog/index.cfm?mode=entry&entry=963 > Yep, it is apparently a popular idea. ;) I believe the very first example was in Spectra, with the generatedContentCa

Re: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Massimo Foti
> Why even use the file system? You could easily use the persistant scopes as > well. See > > well shoot, I could have sworn I blogged it or posted it to by my web site. > But basically, you can write a custom tag so that you can do partial page > caching like so: > > > content > > > This cus

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Katz, Dov B (IT)
rticle.jhtml? term= term=> ] Created : Jan 9 2004 Last Updated : History : Purpose : Allows you to cache partial page content to files   _   From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 9:16 AM To: CF-Talk Subject: RE: CFCACHE parts of pages without

RE: CFCACHE parts of pages without cfhttp

2004-01-08 Thread Raymond Camden
Why even use the file system? You could easily use the persistant scopes as well. See well shoot, I could have sworn I blogged it or posted it to by my web site. But basically, you can write a custom tag so that you can do partial page caching like so: content This custom tag would store

CFCACHE parts of pages without cfhttp

2004-01-08 Thread Dov Katz
are often large (since there's no way to do a startrow in cfquery on mssql, just a maxrows), so you can't always cache the query in memory via cachedwithin,etc...  I'd like to improve performance, but CFCACHE is the wrong approach for session-based pages, since it does't a

RE: CFCACHE in Static Pages

2004-01-02 Thread Spectrum WebDesign
Thanxs Dave, filesystem is the best choice... Once again thanx all From: Dave Watts <[EMAIL PROTECTED]> Date: Thu, 1 Jan 2004 16:43:08 -0500 To: CF-Talk <[EMAIL PROTECTED]> Subject: RE: CFCACHE in Static Pages > we're developing a CMS writing static pages from DB data. N

Re: RE: CFCACHE in Static Pages

2004-01-01 Thread ksuh
urity. - Original Message - From: Dave Watts <[EMAIL PROTECTED]> Date: Thursday, January 1, 2004 1:43 pm Subject: RE: CFCACHE in Static Pages > > we're developing a CMS writing static pages from DB data. No secret. > > But, for improving performance, we're looking fo

RE: CFCACHE in Static Pages

2004-01-01 Thread Dave Watts
> we're developing a CMS writing static pages from DB data. No secret. > But, for improving performance, we're looking for cache solutions for > that static pages. > > Our CMS works like: > > - get data from DB > - with cfcontent and cffile create static pages > - every time any data is change(menu

RE: CFCACHE in Static Pages

2004-01-01 Thread Tom Nunamaker
and really like it. Here's the link to the source code: http://www.sys-con.com/coldfusion/source.cfm?id=254 Tom Nunamaker -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Thursday, January 01, 2004 8:31 AM To: CF-Talk Subject: RE: CFCACHE in Static

RE: CFCACHE in Static Pages

2004-01-01 Thread C. Hatton Humphrey
heory though. Until Later! Hatton    _   From: Spectrum WebDesign [mailto:[EMAIL PROTECTED] Sent: Thursday, January 01, 2004 9:17 AM To: CF-Talk Subject: CFCACHE in Static Pages Hi we're developing a CMS writing static pages from DB data. No secret. But, for improving performance, we&

CFCACHE in Static Pages

2004-01-01 Thread Spectrum WebDesign
Hi we're developing a CMS writing static pages from DB data. No secret. But, for improving performance, we're looking for cache solutions for that static pages. Our CMS works like: - get data from DB - with cfcontent and cffile create static pages - every time any data is change(menu or content)

Re: cfcache and memory

2002-06-25 Thread Douglas Brown
AIL PROTECTED]> Sent: Tuesday, June 25, 2002 2:35 PM Subject: Re: cfcache and memory > And if one of these static files is accessed a LOT, there is no way to force > CF to keep that static file in memory to avoid needless disk accesses? > > - Original Message - > From

Re: cfcache and memory

2002-06-25 Thread Bryan Stevenson
.com - Vancouver Island ColdFusion Users Group Founder & Director www.cfug-vancouverisland.com - Original Message - From: "SoW" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 2

Re: cfcache and memory

2002-06-25 Thread SoW
: Tuesday, June 25, 2002 2:31 PM Subject: Re: cfcache and memory > cfcache creates temp files of the static HTML that is outputted > by a dynamic query, so yes it will be stored on disk and not in > memory. It just avoids the re-quering of data until it is > flushed or refreshed. >

Re: cfcache and memory

2002-06-25 Thread Douglas Brown
cfcache creates temp files of the static HTML that is outputted by a dynamic query, so yes it will be stored on disk and not in memory. It just avoids the re-quering of data until it is flushed or refreshed. Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: &quo

cfcache and memory

2002-06-25 Thread SoW
Hi folks, I am starting to a LOT of templates on my site (thousands -- MBs of HTML). My question is in regards to how CF handles these wrto memory. Are these stored in the "template cache"? If not, is there any way to tell CF to keep these in memory? I have tons of memory -- I just don'

RE: cfcache

2002-04-09 Thread Dave Watts
> > ... if it takes longer to read the file from the disk > > than it does for CF to process the original script, > > you're one hell of a coder. > > Or you have used a network share to write the cached file > to :) Leave it to you to find the exception to the rule! Seriously, though, even th

Re: cfcache

2002-04-09 Thread Jochem van Dieten
Dave Watts wrote: > > CFCACHE does have to read from the hard drive. However, by default, so does > every CF page request, unless you've enabled Trusted Cache and have properly > sized your template cache. Even if you've done that, if it takes longer to > read the file f

RE: cfcache

2002-04-09 Thread Dave Watts
> To the best of my knowledge, CFCache has to read from the > hard drive - so if the overhead in I/O is greater than the > processing of the page, you won't see any gains. CFCACHE does have to read from the hard drive. However, by default, so does every CF page request, unless

RE: cfcache

2002-04-09 Thread Dave Watts
> No, I'm pretty sure cfcache stores the pages in memory (RAM). No, they're stored as text files on the hard drive. When you cache a page on the server with CFCACHE, CF will create two text files. One is the generated content of the page, and will have a .tmp extension. The oth

RE: cfcache

2002-04-09 Thread Jeffry Houser
No, I'm pretty sure cfcache stores the pages in memory (RAM). If it stored on the hard drive, you might gain some performance over running the template from scratch, but not nearly as much as storing in RAM. There is a setting in the ColdFusion administrator with regards to the numb

RE: cfcache

2002-04-09 Thread Houk, Gary
That makes sense Billy, thanks. - G -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 3:53 PM To: CF-Talk Subject: RE: cfcache To the best of my knowledge, CFCache has to read from the hard drive - so if the overhead in I/O is greater

RE: cfcache

2002-04-09 Thread BillyC
To the best of my knowledge, CFCache has to read from the hard drive - so if the overhead in I/O is greater than the processing of the page, you won't see any gains. --- Billy Cravens -Original Message- From: Houk, Gary [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 2:

RE: cfcache

2002-04-09 Thread Houk, Gary
I control it...it's our dev box. I just uploaded a page to our production server and the page processes fine - with the exception that it sends the user back to the login screen. I guess this is normal when using cfcache?! I just started using the tag to do to try to speed up some of are s

RE: cfcache

2002-04-09 Thread BillyC
In addition, it uses CFDirectory and CFFile internally - I'm not sure if CFCache is immune to tag security settings - is this a shared box, or do you control it? --- Billy Cravens -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002

RE: cfcache

2002-04-09 Thread Houk, Gary
no, not that I am aware of... -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 3:18 PM To: CF-Talk Subject: Re: cfcache Houk, Gary wrote: > When I try to use cfcache and set the action to "cache", I get a message > &qu

Re: cfcache

2002-04-09 Thread Jochem van Dieten
Houk, Gary wrote: > When I try to use cfcache and set the action to "cache", I get a message > "access denied". If I set it to "clientcache", it's fine. What am I > missing here? cfcache internally uses cfhttp to make a page request and store the outc

cfcache

2002-04-09 Thread Houk, Gary
When I try to use cfcache and set the action to "cache", I get a message "access denied". If I set it to "clientcache", it's fine. What am I missing here? - Gary __ This list and all

RE: CFCACHE

2002-04-04 Thread Dave Watts
> Do I need to specify the second flush to flush index.cfm or > will the first flush take care of both index.cfm and > index.cfm?* > > 1. directory="#FilePath_2#" > expireurl="index.cfm?*"> > > 2. directory="#FilePath_2#" > expireurl="index.cfm"> If I recall correctly, t

CFCACHE

2002-03-30 Thread sebastian palmigiani
Do I need to specify the second flush to flush index.cfm or will the first flush take care of both index.cfm and index.cfm?* 1. 2. Sebastian __ Your ad could be here. Monies from ads go to support these lists and provide

RE: CFCACHE performance

2002-01-30 Thread Kola Oyedeji
Thanks! Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer ekeda ltd http://www.ekeda.co.uk (+44)020-8429-7300 > -Original Message- > From: Dave Watts [mailto:[EMAIL PROTECTED]] > Sent: 30 January 2002 17:02 > To: CF-Talk > Subject: RE: CFCA

RE: CFCACHE performance

2002-01-30 Thread Dave Watts
> Hi I am using cfcache to cache a page which rarely changes > however i'm finding the page actually takes LONGER to execute. > Looking at my debbuging info the cfcache tag alone actually > takes 327 milliseconds to execute can anyone else confirm the > poor performan

CFCACHE performance

2002-01-30 Thread Kola Oyedeji
Hi I am using cfcache to cache a page which rarely changes however i'm finding the page actually takes LONGER to execute. Looking at my debbuging info the cfcache tag alone actually takes 327 milliseconds to execute can anyone else confirm the poor performance of this tag? Thanks Kola Oy

cfcache and session

2001-12-07 Thread Nathan Shaw
Hi, I am trying to use cfcache for the first time and having some problems. All of the pages I am trying to cache require you to be logged-in first. Apparently, cfcache uses cfhttp to grab the page and in doing so, is not logged-in. Therefore, it is caching the login page. How can I get around

RE: CFCACHE vs. static HTML

2001-10-25 Thread Dave Watts
> Should there be any performance differences between viewing a > page that uses CFCACHE vs. viewing the same page output in a > static HTML file created manually? > > I thought NOT, but some tests I've run suggest otherwise. > > For example, dynamic cfm pages th

CFCACHE vs. static HTML

2001-10-25 Thread kraybill
Should there be any performance differences between viewing a page that uses CFCACHE vs. viewing the same page output in a static HTML file created manually? I thought NOT, but some tests I've run suggest otherwise. For example, dynamic cfm pages that consistently require 10 seconds for

RE: cfcache & Connection Failure <--- Resolved

2001-07-12 Thread Daniel Kemp
ion server are on the same box, it has an internal IP address, and an external IP given to it through the firewall Internal is 192.168.10.3, external is 200.200.100.23 (actually both lies but good enough :) Whenever we connected to the site internally cfcache worked fine and as expected. B

decrypted version of cfcache, anyone?

2001-07-11 Thread Daniel Kemp
Yeah I know this sound lame, but does anyone anywhere have a decrypted version of cfcache. I'm trying to come up with a work-around for a problem we're having (using weird port numbers and some-such), and the trouble is somewhere in cfcache. Not that there's a problem with cf

  1   2   >