Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
It would be if a physical page was created before publish but there isn't,
the page content etc is in the DB and constructed on demand from the DB for
flat file publishing to the web (which runs fine)

I was just hoping to speed up that first hit call but it looks like I will
have to live with it.






"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Paul Vernon
To: CF-Talk
Sent: Sun May 13 21:53:32 2007
Subject: RE: Speeding up first hit compile time

> Erm, yes I know that but this is actually speeding up that process.

Why not use CFHTTP to call the page when you save it? Seems straightforward
enough...

Paul







~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278001
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


deploying changes from subversion

2007-05-13 Thread AJ Mercer
I am still not quite sure how to go about deploying mods from subversion.
This is what I am trying to achieve:

Each developer has a local development environment.
We have a job tracking systems (jira) that bugs and requests for new
features are entered into.

I will work on a bug and once I am happy with the fix, testing in my dev
environment, I will put those changes onto the test server.

After user testing, it may come back for further work, or be signed off.
If signed off, it is put onto the production server.

As you can imaging, there can be any number of bugs been fixed at any point
in time by multiple developers.
The testing can get signed off in any order and may be there for a couple of
weeks.

What I would like to be able to do is get the files for a particular bug fix
and from those file, merge the modifications into test and then production.

General Notes:

 - One file may have multiple bug fixes / enhancements

 - if a modification is to be backed out, and other modification since then
will need to stay.


~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:278000
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MySQL - need auto increment back to 0...

2007-05-13 Thread Barney Boisvert
And without a GUI (such as via CFQUERY), you can use a simple ALTER
TABLE statement.  Check
http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html for
specifics.

cheers,
barneyb

On 5/13/07, Chris Montgomery <[EMAIL PROTECTED]> wrote:
> Will Tomlinson said the following on 5/13/2007 9:11 AM:
> > Thanks Neil! I ended up finding TRUNCATE TABLE with your search. Seemed to 
> > do the trick.
>
> In addition to what others have said, some of the MySQL GUI programs
> will let you reset the autoincrement numbering fairly easily. For
> example, I use SQLYog and have done this several times using the
> Advanced Properties button under the Alter Table (F6) window. I believe
> Navicat also has a similar feature although I haven't used Navicat much.
>
> --
> Best regards,
>
> Chris Montgomery
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277999
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Subversion Tutorial Posted

2007-05-13 Thread John Paul Ashenfelter
On 5/12/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> Boy... and to think I was really looking forward to reading this long
> thread, hoping that, as I contemplate implementing Eclipse, CFEclipse,
> and Subversion, that I would be able to confidently set up a new
> working environment... but alas, all this thread has brought is confusion.

Setting up the environment is pretty straightforward -- heck, you can
start by installing the svn command line _right now_ and using
file:/// to access local repositories without even configuring a
server. There's no reason to delay getting the environment set up b/c
of confusion about what I'm going to label *process*, which is what a
lot of this thread is about.

> It seems almost all perspectives offered in this thread revolves around
> team environments.

The fundamental use of the tool is the same -- Subversion stores files
and the delta of each committed change. That's pretty much it. It
doesn't care about builds or tests or teams or solo developers or
deployments or web applications or programming at all. All Subversion
knows about is files and the changes to a file or set of files between
commits.

Pretty boring work that is well-suited to a machine :)

The rest of this is about how to take that tool and use it to manage a
development process, and there's a lot of variations there as the
thread attests. If you're specifically interested in Subversion, IMHO
the best book out there is Pragmatic Version Control w/ Subversion
from the Pragmatic Programmers.

I'm teaching a course at CFUnited on some of the core open source
tools that can be used to build these processes -- Subversion (version
control), Ant (builds), and Selenium (web-based functional tests). And
I've done some consulting solely on practice for some ColdFusion shops
over the past five years. The one key thing I've learned from that is
that analysis-paralysis sets in with implementing any development
process, just like the inevitable "which framework is best"
discussion. In most cases, there are a lot of viable choices and
simply starting with a choice is a good first-foot forward.

The simplest solution for Subversion in practice is concurrent
development in the "trunk" using tags for releases and branches for
parallel development. Note that I said both "simplest" and "for
Subversion" -- other source control tools have other best practices.
Also note that there's issues of scale, procedure, and a myriad other
details that can be tailored to best meet the workflow of the
project/group in question.

A lot of the back and forth about testing, which certainly part of
agile development, misses part of the point of version control -- it's
about controlling versions of files, no more and no less. Since
meaningful comments are an important part of any commit message, my
threshold for checking in something relates to the story being told by
the comments about the app. I see all to much "fixed bug" or "made
some changes" or "todays work" as the comment in a svn log. What the
heck does that mean? I'll check in 3 separate 1 line changes to a CSS
file if each one is stand-along, because I want to control the
*versions* of the file -- putting in all 3 with one commit means that
all three get rolled back together, which is fine when they go
together and not fine when they don't.

> As a sole (as in the only developer on my projects) developer, the question
> remains, what would be the be approach to Subversion for me?

Use it to store changes to your files, no more and no less. I'd get
the Pragmatic Programmers book as a starting point and try whatever is
simplest that best matches how you want. The beauty of version control
is that you can general change it on the fly. You can start working in
a project that looks like this

/project

and just get moving. When you release it's time for a release and you
want to tag the release, you can just use svn to REARRANGE THE
REPOSITORY -- yes, it's not cast in stone. It's a tool that stores
files and deltas/changes to them. No more. So a couple of svn copy and
svn creates later

/project/trunk
/project/tags/REL-1.0

and so on. Need a branch? Add it. Find that branches are a pain? Get
rid of them. It's just files to Subversion. And since the repository
is stored very efficiently (at least for text) there's no need to
worry that much about space. And if you DO have a lot of binary files,
then we can get into fun stuff like svn:externals and the rest of the
cool stuff.

I'll also suggest that anyone, team or solo, confused about Subversion
and the various build/deploy tools should come to my class at CFUnited
:) We'll cover this and a lot more. Tuesday, all day, at CFUnited
2007.

> Remember, after about 9 or 10 years of development on CF 4.5 without
> upgrading
> (going to CF8), I'm very comfortable with developing on my *production*
> server,
> which would cause most of you to pull your hair out in a team environment...

Seriously, it makes me pull my hair out in solo dev a

Re: MySQL - need auto increment back to 0...

2007-05-13 Thread Chris Montgomery
Will Tomlinson said the following on 5/13/2007 9:11 AM:
> Thanks Neil! I ended up finding TRUNCATE TABLE with your search. Seemed to do 
> the trick. 

In addition to what others have said, some of the MySQL GUI programs 
will let you reset the autoincrement numbering fairly easily. For 
example, I use SQLYog and have done this several times using the 
Advanced Properties button under the Alter Table (F6) window. I believe 
Navicat also has a similar feature although I haven't used Navicat much.

-- 
Best regards,

Chris Montgomery

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277997
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Thread Dump Question java.net.SocketInputStream.socketRead0

2007-05-13 Thread blists
Yeah, I am trying to get up to speed myself on the JVM and related stuff.
The strange thing that's happening right now, is that in my
coldfusion-out.log file, I am getting these full thread dumps from the JVM
without any errors being thrown or the server restarting, the JVM just does
a full dump. 

And, there are no CFM templates within the stack of any of the threads, they
all appear to be fine/normal and waiting. Does the JVM ever do full thread
dumps without an error condition?

Okay, Since upgrading last week to CFMX7 (finally), it has been one thing
after another and customer are upset. I am willing to pay someone for
offsite consulting / help with debugging these server issues. If any one is
interested in helping please email me off list..

Brook

-Original Message-
From: Andrew Scott [mailto:[EMAIL PROTECTED] 
Sent: May 13, 2007 6:40 PM
To: CF-Talk
Subject: Re: Thread Dump Question java.net.SocketInputStream.socketRead0

How are you doing your thread dump?

Not 100% sure I can answer this question, as I have never done a thread dump
before? But is the site idle when you do this, or is this under a bit of
load? It could be threads from CF itself opening and closing files, but
thats a stab in the dark for me as I really do not know.



On 5/14/07, Brook Davies <[EMAIL PROTECTED]> wrote:
>
> In a thread dump, I have about 20 threads that all seem to be sitting at
> the
> same place. They all look like this:
>
>
>
> "jrpp-26" prio=5 tid=0x086652b0 nid=0x174 runnable [f6df000..f6dfd94]
>
>at java.net.SocketInputStream.socketRead0(Native Method)
>
>at java.net.SocketInputStream.read(SocketInputStream.java:129)
>
>at
> java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
>
>at
> java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
>
>at
> java.io.BufferedInputStream.read(BufferedInputStream.java:277)
>
>- locked <0x1b1bef08> (a
> jrun.servlet.io.ReusableBufferedInputStream)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:578)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:570)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readInt(ProxyEndpoint.java:588)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readRequest(ProxyEndpoint.java:231)
>
>at
> jrun.servlet.jrpp.JRunProxyService.swapRunnable(JRunProxyService.java:144)
>
>at
> jrunx.scheduler.ThreadPool$DownstreamMetrics.swapRunnable(ThreadPool.java
> :29
> 0)
>
>at
> jrunx.scheduler.ThreadPool$ThreadThrottle.swapRunnable(ThreadPool.java
> :408)
>
>at
> jrunx.scheduler.ThreadPool$UpstreamMetrics.swapRunnable(ThreadPool.java
> :250)
>
>at jrunx.scheduler.WorkerThread.run(WorkerThread.java:76)
>
>
>
>
> Does  this indicate a network I/O related problem?
>
>
>
> Brook
>
>
>
>
> 



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277996
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bluedragon Installation

2007-05-13 Thread Andrew Scott
The same way you do for Apache and IIS.

If the service for Bluedragon has no rights for the drectory then you will
run into these sort of problems.


On 5/14/07, Qasim Rasheed <[EMAIL PROTECTED]> wrote:
>
> Andrew,
>
> Thanks for the response. How do I set up permission for the directory for
> the built in web server?
>
> Qasim
>
> On 5/13/07, Andrew Scott <[EMAIL PROTECTED]> wrote:
> >
> > Sounds like a permission error for the directory that holds the pages.
> >
> >
> >
> > On 5/14/07, Qasim Rasheed <[EMAIL PROTECTED]> wrote:
> > >
> > > Hello folks,
> > >
> > > I am hoping that someone on this list might be able to help me with
> the
> > > installation issues. I downloaded the Server JX from New Atlanta
> website
> > > and
> > > clicked through the installer with builtin webserver. However when I
> try
> > > to
> > > access url http://localhost:8080/bluedragon, I am faced with a 403
> > > Forbidden
> > > error. I am running ColdFusion 5, ColdFusion 6.1, ColdFusion MX 7
> (with
> > > IIS)
> > > and JRun+ColdFusion MX (with Apache) on same machine with no problem.
> > >
> > > Thanks in advance for your help.
> > >
> > > --
> > > Qasim Rasheed
> > > Certified Advance ColdFusion MX Developer
> > > (IM qasimrasheed AT yahoo, msn or GTalk)
> > >
> > >
> > >
> >
> >
>
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277995
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFMyAdmin

2007-05-13 Thread Dave Long
It's not free but Navicat is a terrific MySQL tool. Check it out at
http://www.navicat.com/

Dave

-Original Message-
From: Steve Good [mailto:[EMAIL PROTECTED] 
Sent: Sunday, May 13, 2007 8:00 PM
To: CF-Talk
Subject: Re: CFMyAdmin

Anybody?  I'm trying to find a tool to manage my MySQL server remotely 
with the same ease phpMyAdmin provides.  Any push in the right direction 
would be great.  I would install php, but I want to keep my server 
overhead to a minimum.

Steve Good wrote:
> Has CFMyAdmin disappeared?  The cfmyadmin.com site says there is no site 
> configured for that domain.  Has it moved or is there something else out 
> there that is similar?
>
> Thanks!
> Steve
>
> 



~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277994
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFMyAdmin

2007-05-13 Thread Andrew Scott
Are the ports for mySQL open on your DB server? If so, there are many DB
plugins for Eclipse that would be of great benefit or even Toad or the tools
from www.mysql.com but it would help to know more about if you can or can't
connect via the DB port. I find web interfaces to slow, and not to mention
it will have to be running from your website.

Does it have to be a web based interface?



On 5/14/07, Steve Good <[EMAIL PROTECTED]> wrote:
>
> Anybody?  I'm trying to find a tool to manage my MySQL server remotely
> with the same ease phpMyAdmin provides.  Any push in the right direction
> would be great.  I would install php, but I want to keep my server
> overhead to a minimum.
>
> Steve Good wrote:
> > Has CFMyAdmin disappeared?  The cfmyadmin.com site says there is no site
> > configured for that domain.  Has it moved or is there something else out
> > there that is similar?
> >
> > Thanks!
> > Steve
> >
> >
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277993
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Subversion Tutorial Posted

2007-05-13 Thread Andrew Scott
Jamie,

I just also realised that I had also posted it in another reply in this
thread Oh well, you have it now.


On 5/14/07, Andrew Scott <[EMAIL PROTECTED]> wrote:
>
> Yeah, I know I guess that is why it is hard to find. I blame mum for
> being un imaginative, but hey have to love her anyway.
>
> My blog is listed at www.andyscott.id.au, and I haven't posted the
> tutorial for subversion yet. i want to make sure that this covers a range of
> scenarios and doesn't come across as one sided as I have posted here,
> and include comments made by a lot of people in here as well.
>
> I am currently also writing more on Test Driven Development as well...
>
>
>
> On 5/14/07, Jaime Metcher <[EMAIL PROTECTED]> wrote:
> >
> > Andrew,
> >
> > Where's your blog?  I did google it - do you have any idea how many
> > people
> > out there are pretending to be you?
> >
> > Jaime Metcher
> >
> > > -Original Message-
> > > From: Andrew Scott [mailto:[EMAIL PROTECTED]
> > > Sent: Saturday, 12 May 2007 10:37 PM
> > > To: CF-Talk
> > > Subject: Re: Subversion Tutorial Posted
> > >
> > >
> > > Rick,
> > >
> > > I am, it will be a very lengthy tutorial. And should be up in the next
> > > couple of days. It is written for any number of team members, one
> > > or 20. But
> > > its not a rule, its a guide...
> > >
> > >
> > >
> > > On 5/12/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> > > >
> > > > Boy... and to think I was really looking forward to reading this
> > long
> > > > thread, hoping that, as I contemplate implementing Eclipse,
> > CFEclipse,
> > > > and Subversion, that I would be able to confidently set up a new
> > > > working environment... but alas, all this thread has brought is
> > > confusion.
> > > >
> > > > It seems almost all perspectives offered in this thread revolves
> > around
> > > > team environments.
> > > >
> > > > As a sole (as in the only developer on my projects) developer, the
> > > > question
> > > > remains, what would be the be approach to Subversion for me?
> > > >
> > > > Anyone blogged that in detail?  I'm sure the best (or at least very
> > > > acceptable)
> > > > practices to all for an solo developer would be, perhaps, very
> > different
> > > > from team best practices... or are there 5,233 different
> > perspectives on
> > > > that, too,
> > > > and I should be dive in and figure out what works best for me.
> > > >
> > > > Remember, after about 9 or 10 years of development on CF 4.5 without
> > > > upgrading
> > > > (going to CF8), I'm very comfortable with developing on my
> > *production*
> > > > server,
> > > > which would cause most of you to pull your hair out in a team
> > > > environment...
> > > >
> > > > Rick
> > > >
> > > >
> > >
> > >
> > >
> >
> > 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277992
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Subversion Tutorial Posted

2007-05-13 Thread Andrew Scott
Yeah, I know I guess that is why it is hard to find. I blame mum for
being un imaginative, but hey have to love her anyway.

My blog is listed at www.andyscott.id.au, and I haven't posted the tutorial
for subversion yet. i want to make sure that this covers a range of
scenarios and doesn't come across as one sided as I have posted here,
and include comments made by a lot of people in here as well.

I am currently also writing more on Test Driven Development as well...



On 5/14/07, Jaime Metcher <[EMAIL PROTECTED]> wrote:
>
> Andrew,
>
> Where's your blog?  I did google it - do you have any idea how many people
> out there are pretending to be you?
>
> Jaime Metcher
>
> > -Original Message-
> > From: Andrew Scott [mailto:[EMAIL PROTECTED]
> > Sent: Saturday, 12 May 2007 10:37 PM
> > To: CF-Talk
> > Subject: Re: Subversion Tutorial Posted
> >
> >
> > Rick,
> >
> > I am, it will be a very lengthy tutorial. And should be up in the next
> > couple of days. It is written for any number of team members, one
> > or 20. But
> > its not a rule, its a guide...
> >
> >
> >
> > On 5/12/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> > >
> > > Boy... and to think I was really looking forward to reading this long
> > > thread, hoping that, as I contemplate implementing Eclipse, CFEclipse,
> > > and Subversion, that I would be able to confidently set up a new
> > > working environment... but alas, all this thread has brought is
> > confusion.
> > >
> > > It seems almost all perspectives offered in this thread revolves
> around
> > > team environments.
> > >
> > > As a sole (as in the only developer on my projects) developer, the
> > > question
> > > remains, what would be the be approach to Subversion for me?
> > >
> > > Anyone blogged that in detail?  I'm sure the best (or at least very
> > > acceptable)
> > > practices to all for an solo developer would be, perhaps, very
> different
> > > from team best practices... or are there 5,233 different perspectives
> on
> > > that, too,
> > > and I should be dive in and figure out what works best for me.
> > >
> > > Remember, after about 9 or 10 years of development on CF 4.5 without
> > > upgrading
> > > (going to CF8), I'm very comfortable with developing on my
> *production*
> > > server,
> > > which would cause most of you to pull your hair out in a team
> > > environment...
> > >
> > > Rick
> > >
> > >
> >
> >
> >
>
> 

~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277991
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFMyAdmin

2007-05-13 Thread todd sharp
Ooops...looks like that requires PHP too.

Here's a few others:

http://cfsilence.com/blog/client/index.cfm/2006/1/4/Genesis-10-Query-Evalution-Tool-Released
 
http://www.flexsqladmin.com/

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277990
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bluedragon Installation

2007-05-13 Thread Qasim Rasheed
Andrew,

Thanks for the response. How do I set up permission for the directory for
the built in web server?

Qasim

On 5/13/07, Andrew Scott <[EMAIL PROTECTED]> wrote:
>
> Sounds like a permission error for the directory that holds the pages.
>
>
>
> On 5/14/07, Qasim Rasheed <[EMAIL PROTECTED]> wrote:
> >
> > Hello folks,
> >
> > I am hoping that someone on this list might be able to help me with the
> > installation issues. I downloaded the Server JX from New Atlanta website
> > and
> > clicked through the installer with builtin webserver. However when I try
> > to
> > access url http://localhost:8080/bluedragon, I am faced with a 403
> > Forbidden
> > error. I am running ColdFusion 5, ColdFusion 6.1, ColdFusion MX 7 (with
> > IIS)
> > and JRun+ColdFusion MX (with Apache) on same machine with no problem.
> >
> > Thanks in advance for your help.
> >
> > --
> > Qasim Rasheed
> > Certified Advance ColdFusion MX Developer
> > (IM qasimrasheed AT yahoo, msn or GTalk)
> >
> >
> >
>
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277989
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFMyAdmin

2007-05-13 Thread todd sharp
Check SQL Admin - http://sqladmin.riaforge.org/ 

There are a bunch of similar apps out there.  Google around a bit and you'll 
find them.

>Anybody?  I'm trying to find a tool to manage my MySQL server remotely 
>with the same ease phpMyAdmin provides.  Any push in the right direction 
>would be great.  I would install php, but I want to keep my server 
>overhead to a minimum.
>
>Steve Good wrote:
>> Has CFMyAdmin disappeared?  The cfmyadmin.com site says there is no site 
>> configured for that domain.  Has it moved or is there something else out 
>> there that is similar?
>>
>> Thanks!
>> Steve
>>
>>

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277988
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Subversion Tutorial Posted

2007-05-13 Thread Jaime Metcher
Andrew,

Where's your blog?  I did google it - do you have any idea how many people
out there are pretending to be you?

Jaime Metcher

> -Original Message-
> From: Andrew Scott [mailto:[EMAIL PROTECTED]
> Sent: Saturday, 12 May 2007 10:37 PM
> To: CF-Talk
> Subject: Re: Subversion Tutorial Posted
>
>
> Rick,
>
> I am, it will be a very lengthy tutorial. And should be up in the next
> couple of days. It is written for any number of team members, one
> or 20. But
> its not a rule, its a guide...
>
>
>
> On 5/12/07, Rick Faircloth <[EMAIL PROTECTED]> wrote:
> >
> > Boy... and to think I was really looking forward to reading this long
> > thread, hoping that, as I contemplate implementing Eclipse, CFEclipse,
> > and Subversion, that I would be able to confidently set up a new
> > working environment... but alas, all this thread has brought is
> confusion.
> >
> > It seems almost all perspectives offered in this thread revolves around
> > team environments.
> >
> > As a sole (as in the only developer on my projects) developer, the
> > question
> > remains, what would be the be approach to Subversion for me?
> >
> > Anyone blogged that in detail?  I'm sure the best (or at least very
> > acceptable)
> > practices to all for an solo developer would be, perhaps, very different
> > from team best practices... or are there 5,233 different perspectives on
> > that, too,
> > and I should be dive in and figure out what works best for me.
> >
> > Remember, after about 9 or 10 years of development on CF 4.5 without
> > upgrading
> > (going to CF8), I'm very comfortable with developing on my *production*
> > server,
> > which would cause most of you to pull your hair out in a team
> > environment...
> >
> > Rick
> >
> >
>
>
> 

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277987
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Bluedragon Installation

2007-05-13 Thread Andrew Scott
Sounds like a permission error for the directory that holds the pages.



On 5/14/07, Qasim Rasheed <[EMAIL PROTECTED]> wrote:
>
> Hello folks,
>
> I am hoping that someone on this list might be able to help me with the
> installation issues. I downloaded the Server JX from New Atlanta website
> and
> clicked through the installer with builtin webserver. However when I try
> to
> access url http://localhost:8080/bluedragon, I am faced with a 403
> Forbidden
> error. I am running ColdFusion 5, ColdFusion 6.1, ColdFusion MX 7 (with
> IIS)
> and JRun+ColdFusion MX (with Apache) on same machine with no problem.
>
> Thanks in advance for your help.
>
> --
> Qasim Rasheed
> Certified Advance ColdFusion MX Developer
> (IM qasimrasheed AT yahoo, msn or GTalk)
>
>
> 

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277986
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Thread Dump Question java.net.SocketInputStream.socketRead0

2007-05-13 Thread Andrew Scott
How are you doing your thread dump?

Not 100% sure I can answer this question, as I have never done a thread dump
before? But is the site idle when you do this, or is this under a bit of
load? It could be threads from CF itself opening and closing files, but
thats a stab in the dark for me as I really do not know.



On 5/14/07, Brook Davies <[EMAIL PROTECTED]> wrote:
>
> In a thread dump, I have about 20 threads that all seem to be sitting at
> the
> same place. They all look like this:
>
>
>
> "jrpp-26" prio=5 tid=0x086652b0 nid=0x174 runnable [f6df000..f6dfd94]
>
>at java.net.SocketInputStream.socketRead0(Native Method)
>
>at java.net.SocketInputStream.read(SocketInputStream.java:129)
>
>at
> java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
>
>at
> java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
>
>at
> java.io.BufferedInputStream.read(BufferedInputStream.java:277)
>
>- locked <0x1b1bef08> (a
> jrun.servlet.io.ReusableBufferedInputStream)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:578)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:570)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readInt(ProxyEndpoint.java:588)
>
>at
> jrun.servlet.jrpp.ProxyEndpoint.readRequest(ProxyEndpoint.java:231)
>
>at
> jrun.servlet.jrpp.JRunProxyService.swapRunnable(JRunProxyService.java:144)
>
>at
> jrunx.scheduler.ThreadPool$DownstreamMetrics.swapRunnable(ThreadPool.java
> :29
> 0)
>
>at
> jrunx.scheduler.ThreadPool$ThreadThrottle.swapRunnable(ThreadPool.java
> :408)
>
>at
> jrunx.scheduler.ThreadPool$UpstreamMetrics.swapRunnable(ThreadPool.java
> :250)
>
>at jrunx.scheduler.WorkerThread.run(WorkerThread.java:76)
>
>
>
>
> Does  this indicate a network I/O related problem?
>
>
>
> Brook
>
>
>
>
> 

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277985
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Bluedragon Installation

2007-05-13 Thread Qasim Rasheed
Hello folks,

I am hoping that someone on this list might be able to help me with the
installation issues. I downloaded the Server JX from New Atlanta website and
clicked through the installer with builtin webserver. However when I try to
access url http://localhost:8080/bluedragon, I am faced with a 403 Forbidden
error. I am running ColdFusion 5, ColdFusion 6.1, ColdFusion MX 7 (with IIS)
and JRun+ColdFusion MX (with Apache) on same machine with no problem.

Thanks in advance for your help.

-- 
Qasim Rasheed
Certified Advance ColdFusion MX Developer
(IM qasimrasheed AT yahoo, msn or GTalk)


~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277984
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFMyAdmin

2007-05-13 Thread Steve Good
Anybody?  I'm trying to find a tool to manage my MySQL server remotely 
with the same ease phpMyAdmin provides.  Any push in the right direction 
would be great.  I would install php, but I want to keep my server 
overhead to a minimum.

Steve Good wrote:
> Has CFMyAdmin disappeared?  The cfmyadmin.com site says there is no site 
> configured for that domain.  Has it moved or is there something else out 
> there that is similar?
>
> Thanks!
> Steve
>
> 

~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277983
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Andy Allan
I'd say you just need to live with it ... if the miliseconds are
precious, look at other areas instead.

On 13/05/07, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> >Nope, can't be done as noted, the page is built and requested on the fly.
>
> Then you're just out of luck on this one guy? :)
>
> Will
>
> 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277982
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Speeding up first hit compile time

2007-05-13 Thread Will Tomlinson
>Nope, can't be done as noted, the page is built and requested on the fly. 

Then you're just out of luck on this one guy? :)

Will

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277981
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Thread Dump Question java.net.SocketInputStream.socketRead0

2007-05-13 Thread Brook Davies
In a thread dump, I have about 20 threads that all seem to be sitting at the
same place. They all look like this:

 

"jrpp-26" prio=5 tid=0x086652b0 nid=0x174 runnable [f6df000..f6dfd94]

at java.net.SocketInputStream.socketRead0(Native Method)

at java.net.SocketInputStream.read(SocketInputStream.java:129)

at
java.io.BufferedInputStream.fill(BufferedInputStream.java:183)

at
java.io.BufferedInputStream.read1(BufferedInputStream.java:222)

at
java.io.BufferedInputStream.read(BufferedInputStream.java:277)

- locked <0x1b1bef08> (a
jrun.servlet.io.ReusableBufferedInputStream)

at
jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:578)

at
jrun.servlet.jrpp.ProxyEndpoint.readFully(ProxyEndpoint.java:570)

at
jrun.servlet.jrpp.ProxyEndpoint.readInt(ProxyEndpoint.java:588)

at
jrun.servlet.jrpp.ProxyEndpoint.readRequest(ProxyEndpoint.java:231)

at
jrun.servlet.jrpp.JRunProxyService.swapRunnable(JRunProxyService.java:144)

at
jrunx.scheduler.ThreadPool$DownstreamMetrics.swapRunnable(ThreadPool.java:29
0)

at
jrunx.scheduler.ThreadPool$ThreadThrottle.swapRunnable(ThreadPool.java:408)

at
jrunx.scheduler.ThreadPool$UpstreamMetrics.swapRunnable(ThreadPool.java:250)

at jrunx.scheduler.WorkerThread.run(WorkerThread.java:76)




Does  this indicate a network I/O related problem?

 

Brook




~|
ColdFusion MX7 by Adobe®
Dyncamically transform webcontent into Adobe PDF with new ColdFusion MX7. 
Free Trial. http://www.adobe.com/products/coldfusion?sdid=RVJV

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277980
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Nope, can't be done as noted, the page is built and requested on the fly. 




"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sun May 13 20:52:45 2007
Subject: Re: Speeding up first hit compile time

Maybe you can schedule a task to hit the page so it's compiled?

Will



~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277979
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Speeding up first hit compile time

2007-05-13 Thread Paul Vernon
> Erm, yes I know that but this is actually speeding up that process.

Why not use CFHTTP to call the page when you save it? Seems straightforward
enough...

Paul





~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277978
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Will Tomlinson
Maybe you can schedule a task to hit the page so it's compiled?

Will

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277977
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Also, these pages are created/viewed on the fly from within the CMS.


"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Ariel Jakobovits
To: CF-Talk
Sent: Sun May 13 20:33:03 2007
Subject: Re: Speeding up first hit compile time

hit the page yourself the first time as soon as you release it to cause it
to compile so that it is ready for your users

- Original Message 
From: Gert Franz <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Sunday, May 13, 2007 9:37:51 AM
Subject: Re: Speeding up first hit compile time

Hi Neil,

I am still trying to convince you to try Railo :-) Since CFCompile is 
not an option you can tweak the JVM settings for CFMX. Read more here:

http://java.sun.com/docs/hotspot/VMOptions.html
http://developers.sun.com/techtopics/mobility/midp/articles/garbage/index.ht
ml

Since in Railo 1.1 we use a bytecode generator, the compiling time is 
around only 20ms per file... Before it was around 200ms...

Just to mention...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Join our Mailing List / Treten Sie unserer Mailingliste bei:
deutsch: http://de.groups.yahoo.com/group/railo/
english: http://groups.yahoo.com/group/railo_talk/



Robertson-Ravo, Neil (RX) schrieb:
> Yeah, It's not a huge deal as noted, but the extra millisecs all count
when
> you have x number of users adding content/pages to the site via the CMS.
>
> The setup is pretty beefy, so I don't think it's that, it's no doubt
> something I will have to live with :-( until ColdFusion flies!
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
the
> intended recipient(s).  If you are not the intended recipient(s) please
note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
this
> communication are not necessarily those expressed by Reed Exhibitions." 
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Peter Tilbrook
> To: CF-Talk
> Sent: Sun May 13 13:53:22 2007
> Subject: Re: Speeding up first hit compile time
>
> As CF improves, markedly of late, this should not be an issue.
>
> Yes CF seems to take ages to execute the first template upon a restart (as
> the libraries are loaded) but after that it flies.
>
> If you are having issues I would look at your setup - is the database
server
> on the same box, system RAM, etc.
>
> CF is getting faster and faster but will not help with "not quite right
> code" or trying to use CF as a database server.
>
>
>
>
> 





~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277976
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Erm, yes I know that but this is actually speeding up that process.


"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Ariel Jakobovits
To: CF-Talk
Sent: Sun May 13 20:33:03 2007
Subject: Re: Speeding up first hit compile time

hit the page yourself the first time as soon as you release it to cause it
to compile so that it is ready for your users

- Original Message 
From: Gert Franz <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Sunday, May 13, 2007 9:37:51 AM
Subject: Re: Speeding up first hit compile time

Hi Neil,

I am still trying to convince you to try Railo :-) Since CFCompile is 
not an option you can tweak the JVM settings for CFMX. Read more here:

http://java.sun.com/docs/hotspot/VMOptions.html
http://developers.sun.com/techtopics/mobility/midp/articles/garbage/index.ht
ml

Since in Railo 1.1 we use a bytecode generator, the compiling time is 
around only 20ms per file... Before it was around 200ms...

Just to mention...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Join our Mailing List / Treten Sie unserer Mailingliste bei:
deutsch: http://de.groups.yahoo.com/group/railo/
english: http://groups.yahoo.com/group/railo_talk/



Robertson-Ravo, Neil (RX) schrieb:
> Yeah, It's not a huge deal as noted, but the extra millisecs all count
when
> you have x number of users adding content/pages to the site via the CMS.
>
> The setup is pretty beefy, so I don't think it's that, it's no doubt
> something I will have to live with :-( until ColdFusion flies!
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
the
> intended recipient(s).  If you are not the intended recipient(s) please
note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
this
> communication are not necessarily those expressed by Reed Exhibitions." 
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Peter Tilbrook
> To: CF-Talk
> Sent: Sun May 13 13:53:22 2007
> Subject: Re: Speeding up first hit compile time
>
> As CF improves, markedly of late, this should not be an issue.
>
> Yes CF seems to take ages to execute the first template upon a restart (as
> the libraries are loaded) but after that it flies.
>
> If you are having issues I would look at your setup - is the database
server
> on the same box, system RAM, etc.
>
> CF is getting faster and faster but will not help with "not quite right
> code" or trying to use CF as a database server.
>
>
>
>
> 





~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277975
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Ariel Jakobovits
hit the page yourself the first time as soon as you release it to cause it to 
compile so that it is ready for your users

- Original Message 
From: Gert Franz <[EMAIL PROTECTED]>
To: CF-Talk 
Sent: Sunday, May 13, 2007 9:37:51 AM
Subject: Re: Speeding up first hit compile time

Hi Neil,

I am still trying to convince you to try Railo :-) Since CFCompile is 
not an option you can tweak the JVM settings for CFMX. Read more here:

http://java.sun.com/docs/hotspot/VMOptions.html
http://developers.sun.com/techtopics/mobility/midp/articles/garbage/index.html

Since in Railo 1.1 we use a bytecode generator, the compiling time is 
around only 20ms per file... Before it was around 200ms...

Just to mention...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Join our Mailing List / Treten Sie unserer Mailingliste bei:
deutsch: http://de.groups.yahoo.com/group/railo/
english: http://groups.yahoo.com/group/railo_talk/



Robertson-Ravo, Neil (RX) schrieb:
> Yeah, It's not a huge deal as noted, but the extra millisecs all count when
> you have x number of users adding content/pages to the site via the CMS.
>
> The setup is pretty beefy, so I don't think it's that, it's no doubt
> something I will have to live with :-( until ColdFusion flies!
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of the
> intended recipient(s).  If you are not the intended recipient(s) please note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
> communication are not necessarily those expressed by Reed Exhibitions." 
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Peter Tilbrook
> To: CF-Talk
> Sent: Sun May 13 13:53:22 2007
> Subject: Re: Speeding up first hit compile time
>
> As CF improves, markedly of late, this should not be an issue.
>
> Yes CF seems to take ages to execute the first template upon a restart (as
> the libraries are loaded) but after that it flies.
>
> If you are having issues I would look at your setup - is the database server
> on the same box, system RAM, etc.
>
> CF is getting faster and faster but will not help with "not quite right
> code" or trying to use CF as a database server.
>
>
>
>
> 



~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277974
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


a couple windows to linux, cf to bluedragon problems

2007-05-13 Thread stylo stylo
I'm moving from windows to linux and cf to bluedragon and a few issues in 
moving the same code:

1) One is a cfsavecontent "latest" in an include that is not appearing now.


 

I can't remember why the StructInsert attributes have the same name but worked 
fine. Now nothing appears. Ideas?

2) Another is my search page, which worked fine, now gives a "Badly formatted 
template" error. What is that and why?

Thanks.

~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277973
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Gert Franz
Well after you have seen it, I guess you don't have to be convinced 
anymore... :-)

No, no... Just us that, what is best suited for you...

Gert

Robertson-Ravo, Neil (RX) schrieb:
> Perhaps you can try to convince me in Edinburgh at the end of the month :-)
>
> As it stands though, if a switch was to happen it would be to Bluedragon.NET
> so you have some work to do..!
>
> Thanks for the link, will check it out.
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of the
> intended recipient(s).  If you are not the intended recipient(s) please note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
> communication are not necessarily those expressed by Reed Exhibitions." 
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Gert Franz
> To: CF-Talk
> Sent: Sun May 13 17:37:51 2007
> Subject: Re: Speeding up first hit compile time
>
> Hi Neil,
>
> I am still trying to convince you to try Railo :-) Since CFCompile is 
> not an option you can tweak the JVM settings for CFMX. Read more here:
>
> http://java.sun.com/docs/hotspot/VMOptions.html
> http://developers.sun.com/techtopics/mobility/midp/articles/garbage/index.ht
> ml
>
> Since in Railo 1.1 we use a bytecode generator, the compiling time is 
> around only 20ms per file... Before it was around 200ms...
>
> Just to mention...
>
> Greetings / Grüsse
> Gert Franz
> Customer Care
> Railo Technologies GmbH
> [EMAIL PROTECTED]
> www.railo.ch
>
> Join our Mailing List / Treten Sie unserer Mailingliste bei:
> deutsch: http://de.groups.yahoo.com/group/railo/
> english: http://groups.yahoo.com/group/railo_talk/
>
>
>
> Robertson-Ravo, Neil (RX) schrieb:
>   
>> Yeah, It's not a huge deal as noted, but the extra millisecs all count
>> 
> when
>   
>> you have x number of users adding content/pages to the site via the CMS.
>>
>> The setup is pretty beefy, so I don't think it's that, it's no doubt
>> something I will have to live with :-( until ColdFusion flies!
>>
>>
>>
>>
>>
>> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
>> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
>> Registered in England, Number 678540.  It contains information which is
>> confidential and may also be privileged.  It is for the exclusive use of
>> 
> the
>   
>> intended recipient(s).  If you are not the intended recipient(s) please
>> 
> note
>   
>> that any form of distribution, copying or use of this communication or the
>> information in it is strictly prohibited and may be unlawful.  If you have
>> received this communication in error please return it to the sender or
>> 
> call
>   
>> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
>> 
> this
>   
>> communication are not necessarily those expressed by Reed Exhibitions." 
>> Visit our website at http://www.reedexpo.com
>>
>> -Original Message-
>> From: Peter Tilbrook
>> To: CF-Talk
>> Sent: Sun May 13 13:53:22 2007
>> Subject: Re: Speeding up first hit compile time
>>
>> As CF improves, markedly of late, this should not be an issue.
>>
>> Yes CF seems to take ages to execute the first template upon a restart (as
>> the libraries are loaded) but after that it flies.
>>
>> If you are having issues I would look at your setup - is the database
>> 
> server
>   
>> on the same box, system RAM, etc.
>>
>> CF is getting faster and faster but will not help with "not quite right
>> code" or trying to use CF as a database server.
>>
>>
>>
>>
>>
>> 
>
>
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277972
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Perhaps you can try to convince me in Edinburgh at the end of the month :-)

As it stands though, if a switch was to happen it would be to Bluedragon.NET
so you have some work to do..!

Thanks for the link, will check it out.


"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Gert Franz
To: CF-Talk
Sent: Sun May 13 17:37:51 2007
Subject: Re: Speeding up first hit compile time

Hi Neil,

I am still trying to convince you to try Railo :-) Since CFCompile is 
not an option you can tweak the JVM settings for CFMX. Read more here:

http://java.sun.com/docs/hotspot/VMOptions.html
http://developers.sun.com/techtopics/mobility/midp/articles/garbage/index.ht
ml

Since in Railo 1.1 we use a bytecode generator, the compiling time is 
around only 20ms per file... Before it was around 200ms...

Just to mention...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Join our Mailing List / Treten Sie unserer Mailingliste bei:
deutsch: http://de.groups.yahoo.com/group/railo/
english: http://groups.yahoo.com/group/railo_talk/



Robertson-Ravo, Neil (RX) schrieb:
> Yeah, It's not a huge deal as noted, but the extra millisecs all count
when
> you have x number of users adding content/pages to the site via the CMS.
>
> The setup is pretty beefy, so I don't think it's that, it's no doubt
> something I will have to live with :-( until ColdFusion flies!
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
the
> intended recipient(s).  If you are not the intended recipient(s) please
note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
this
> communication are not necessarily those expressed by Reed Exhibitions." 
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Peter Tilbrook
> To: CF-Talk
> Sent: Sun May 13 13:53:22 2007
> Subject: Re: Speeding up first hit compile time
>
> As CF improves, markedly of late, this should not be an issue.
>
> Yes CF seems to take ages to execute the first template upon a restart (as
> the libraries are loaded) but after that it flies.
>
> If you are having issues I would look at your setup - is the database
server
> on the same box, system RAM, etc.
>
> CF is getting faster and faster but will not help with "not quite right
> code" or trying to use CF as a database server.
>
>
>
>
> 



~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277971
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Gert Franz
Hi Neil,

I am still trying to convince you to try Railo :-) Since CFCompile is 
not an option you can tweak the JVM settings for CFMX. Read more here:

http://java.sun.com/docs/hotspot/VMOptions.html
http://developers.sun.com/techtopics/mobility/midp/articles/garbage/index.html

Since in Railo 1.1 we use a bytecode generator, the compiling time is 
around only 20ms per file... Before it was around 200ms...

Just to mention...

Greetings / Grüsse
Gert Franz
Customer Care
Railo Technologies GmbH
[EMAIL PROTECTED]
www.railo.ch

Join our Mailing List / Treten Sie unserer Mailingliste bei:
deutsch: http://de.groups.yahoo.com/group/railo/
english: http://groups.yahoo.com/group/railo_talk/



Robertson-Ravo, Neil (RX) schrieb:
> Yeah, It's not a huge deal as noted, but the extra millisecs all count when
> you have x number of users adding content/pages to the site via the CMS.
>
> The setup is pretty beefy, so I don't think it's that, it's no doubt
> something I will have to live with :-( until ColdFusion flies!
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of the
> intended recipient(s).  If you are not the intended recipient(s) please note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
> communication are not necessarily those expressed by Reed Exhibitions." 
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Peter Tilbrook
> To: CF-Talk
> Sent: Sun May 13 13:53:22 2007
> Subject: Re: Speeding up first hit compile time
>
> As CF improves, markedly of late, this should not be an issue.
>
> Yes CF seems to take ages to execute the first template upon a restart (as
> the libraries are loaded) but after that it flies.
>
> If you are having issues I would look at your setup - is the database server
> on the same box, system RAM, etc.
>
> CF is getting faster and faster but will not help with "not quite right
> code" or trying to use CF as a database server.
>
>
>
>
> 

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277970
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MySQL - need auto increment back to 0...

2007-05-13 Thread Will Tomlinson
Thanks Neil! I ended up finding TRUNCATE TABLE with your search. Seemed to do 
the trick. 

:)

Will

~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277969
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: MySQL - need auto increment back to 0...

2007-05-13 Thread Jake Pilgrim
In the past I have just deleted the column and recreated it, which effectively 
sets the autoincrement back to 0. However there are definitely a few downfalls 
of this approach (broken relationships and not straightforward when done 
programatically) - I'll be interested in finding if anyone has a better 
solution for this. 

~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277968
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: OT: MySQL - need auto increment back to 0...

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Search for reseed + identity column + MySQL.





"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Will Tomlinson
To: CF-Talk
Sent: Sun May 13 14:22:57 2007
Subject: OT: MySQL - need auto increment back to 0...

Did some googlin' on this and didnt come up with much. 

I have an auto increment ID in a MySQL table. Let's say 10,000 are inserted.


Then you delete those 10,000. 

You add another and the auto increment sets the id at 10001. 

How can I get that table to start back to 0? I'm testing with a lot of
records and don't want the ID's to keep piling up. 

Thanks,
Will



~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277967
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Yeah, It's not a huge deal as noted, but the extra millisecs all count when
you have x number of users adding content/pages to the site via the CMS.

The setup is pretty beefy, so I don't think it's that, it's no doubt
something I will have to live with :-( until ColdFusion flies!





"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Peter Tilbrook
To: CF-Talk
Sent: Sun May 13 13:53:22 2007
Subject: Re: Speeding up first hit compile time

As CF improves, markedly of late, this should not be an issue.

Yes CF seems to take ages to execute the first template upon a restart (as
the libraries are loaded) but after that it flies.

If you are having issues I would look at your setup - is the database server
on the same box, system RAM, etc.

CF is getting faster and faster but will not help with "not quite right
code" or trying to use CF as a database server.




~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277966
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Wouldn't help, the pages are created *and* requested on the fly.






"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Andrew Scott
To: CF-Talk
Sent: Sun May 13 14:07:25 2007
Subject: Re: Speeding up first hit compile time

Neil,

I think I said that when the file is created why not do a cfexcute on the
file to compile it?


On 5/13/07, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> The files are created by the CMS system on the fly so I kinda need to rely
> on the ColdFusion engine to compile them first off as each page, per
> user/project is unique.
>
> It's no huge deal I was just trying to claw back those extra milliseconds
> :-)
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Andrew Scott
> To: CF-Talk
> Sent: Sun May 13 13:36:32 2007
> Subject: Re: Speeding up first hit compile time
>
> Neil...
>
> not sure if this is an option or not.. Not sure how you are creating your
> on
> the fly code, or template. But have you considered running a an execute or
> something on the creation of that file to compile it? just a thought, not
> sure if there is a setting in the Administrator or not. to help speed it
> up
> though.
>
>
>
> On 5/13/07, Robertson-Ravo, Neil (RX) <
> [EMAIL PROTECTED]>
> wrote:
> >
> > Yeah but that is an advance process which is not an option... as you
> know
> > first hand :-) our CMS generates files on the fly during
> editing/creation
> > which I was trying to speed up.
> >
> >
> >
> >
> >
> >
> >
> > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> > Registered in England, Number 678540.  It contains information which is
> > confidential and may also be privileged.  It is for the exclusive use of
> > the
> > intended recipient(s).  If you are not the intended recipient(s) please
> > note
> > that any form of distribution, copying or use of this communication or
> the
> > information in it is strictly prohibited and may be unlawful.  If you
> have
> > received this communication in error please return it to the sender or
> > call
> > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > this
> > communication are not necessarily those expressed by Reed Exhibitions."
> > Visit our website at http://www.reedexpo.com
> >
> > -Original Message-
> > From: Andy Allan
> > To: CF-Talk
> > Sent: Sun May 13 11:23:51 2007
> > Subject: Re: Speeding up first hit compile time
> >
> > cfcompile
> >
> > On 13/05/07, Robertson-Ravo, Neil (RX)
> > <[EMAIL PROTECTED]>
> > wrote:
> > >
> > > 'Ello
> > >
> > > Is there anyway to speed up the first hit compile time of templates
> (not
> > > by
> > > extensive cachine of class files etc) I mean speed up the actual
> process
> > > as
> > > if it was running clean each time.
> > >
> > > Is it a case of JVM tweaks or a case of living with the first hit
> speed
> > > out
> > > of the box?
> > >
> > > Cheers
> > >
> > > Neil
> > >
> > >
> > > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed
> Business,
> > > Registered in England, Number 678540.  It contains information which
> is
> > > confidential and may also be privileged.  It is for the exclusive use
> of
> > > the
> > > intended recipient(s).  If you are not the intended recipient(s)
> please
> > > note
> > > that

OT: MySQL - need auto increment back to 0...

2007-05-13 Thread Will Tomlinson
Did some googlin' on this and didnt come up with much. 

I have an auto increment ID in a MySQL table. Let's say 10,000 are inserted. 

Then you delete those 10,000. 

You add another and the auto increment sets the id at 10001. 

How can I get that table to start back to 0? I'm testing with a lot of records 
and don't want the ID's to keep piling up. 

Thanks,
Will

~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277964
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Andrew Scott
Neil,

I think I said that when the file is created why not do a cfexcute on the
file to compile it?


On 5/13/07, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> The files are created by the CMS system on the fly so I kinda need to rely
> on the ColdFusion engine to compile them first off as each page, per
> user/project is unique.
>
> It's no huge deal I was just trying to claw back those extra milliseconds
> :-)
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Andrew Scott
> To: CF-Talk
> Sent: Sun May 13 13:36:32 2007
> Subject: Re: Speeding up first hit compile time
>
> Neil...
>
> not sure if this is an option or not.. Not sure how you are creating your
> on
> the fly code, or template. But have you considered running a an execute or
> something on the creation of that file to compile it? just a thought, not
> sure if there is a setting in the Administrator or not. to help speed it
> up
> though.
>
>
>
> On 5/13/07, Robertson-Ravo, Neil (RX) <
> [EMAIL PROTECTED]>
> wrote:
> >
> > Yeah but that is an advance process which is not an option... as you
> know
> > first hand :-) our CMS generates files on the fly during
> editing/creation
> > which I was trying to speed up.
> >
> >
> >
> >
> >
> >
> >
> > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> > Registered in England, Number 678540.  It contains information which is
> > confidential and may also be privileged.  It is for the exclusive use of
> > the
> > intended recipient(s).  If you are not the intended recipient(s) please
> > note
> > that any form of distribution, copying or use of this communication or
> the
> > information in it is strictly prohibited and may be unlawful.  If you
> have
> > received this communication in error please return it to the sender or
> > call
> > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > this
> > communication are not necessarily those expressed by Reed Exhibitions."
> > Visit our website at http://www.reedexpo.com
> >
> > -Original Message-
> > From: Andy Allan
> > To: CF-Talk
> > Sent: Sun May 13 11:23:51 2007
> > Subject: Re: Speeding up first hit compile time
> >
> > cfcompile
> >
> > On 13/05/07, Robertson-Ravo, Neil (RX)
> > <[EMAIL PROTECTED]>
> > wrote:
> > >
> > > 'Ello
> > >
> > > Is there anyway to speed up the first hit compile time of templates
> (not
> > > by
> > > extensive cachine of class files etc) I mean speed up the actual
> process
> > > as
> > > if it was running clean each time.
> > >
> > > Is it a case of JVM tweaks or a case of living with the first hit
> speed
> > > out
> > > of the box?
> > >
> > > Cheers
> > >
> > > Neil
> > >
> > >
> > > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed
> Business,
> > > Registered in England, Number 678540.  It contains information which
> is
> > > confidential and may also be privileged.  It is for the exclusive use
> of
> > > the
> > > intended recipient(s).  If you are not the intended recipient(s)
> please
> > > note
> > > that any form of distribution, copying or use of this communication or
> > the
> > > information in it is strictly prohibited and may be unlawful.  If you
> > have
> > > received this communication in error please return it to the sender or
> > > call
> > > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > > this
> > > communication are not necessarily those expressed by Reed
> Exhibitions."
> > > Visit our website at http://www.reedexpo.com
> > >
> > >
> > >
> >
> >
> >
> >
>
>
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277963
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Speeding up first hit compile time

2007-05-13 Thread Peter Tilbrook
As CF improves, markedly of late, this should not be an issue.

Yes CF seems to take ages to execute the first template upon a restart (as the 
libraries are loaded) but after that it flies.

If you are having issues I would look at your setup - is the database server on 
the same box, system RAM, etc.

CF is getting faster and faster but will not help with "not quite right code" 
or trying to use CF as a database server.


~|
Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 & 
Flex 2
Free Trial 
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277962
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
I can obviously save class files and potentially turn on template caching
but in some cases this causes more problems.



"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Andrew Scott
To: CF-Talk
Sent: Sun May 13 13:36:32 2007
Subject: Re: Speeding up first hit compile time

Neil...

not sure if this is an option or not.. Not sure how you are creating your on
the fly code, or template. But have you considered running a an execute or
something on the creation of that file to compile it? just a thought, not
sure if there is a setting in the Administrator or not. to help speed it up
though.



On 5/13/07, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> Yeah but that is an advance process which is not an option... as you know
> first hand :-) our CMS generates files on the fly during editing/creation
> which I was trying to speed up.
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Andy Allan
> To: CF-Talk
> Sent: Sun May 13 11:23:51 2007
> Subject: Re: Speeding up first hit compile time
>
> cfcompile
>
> On 13/05/07, Robertson-Ravo, Neil (RX)
> <[EMAIL PROTECTED]>
> wrote:
> >
> > 'Ello
> >
> > Is there anyway to speed up the first hit compile time of templates (not
> > by
> > extensive cachine of class files etc) I mean speed up the actual process
> > as
> > if it was running clean each time.
> >
> > Is it a case of JVM tweaks or a case of living with the first hit speed
> > out
> > of the box?
> >
> > Cheers
> >
> > Neil
> >
> >
> > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> > Registered in England, Number 678540.  It contains information which is
> > confidential and may also be privileged.  It is for the exclusive use of
> > the
> > intended recipient(s).  If you are not the intended recipient(s) please
> > note
> > that any form of distribution, copying or use of this communication or
> the
> > information in it is strictly prohibited and may be unlawful.  If you
> have
> > received this communication in error please return it to the sender or
> > call
> > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > this
> > communication are not necessarily those expressed by Reed Exhibitions."
> > Visit our website at http://www.reedexpo.com
> >
> >
> >
>
>
>
> 



~|
Upgrade to Adobe ColdFusion MX7
The most significant release in over 10 years. Upgrade & see new features.
http://www.adobe.com/products/coldfusion?sdid=RVJR

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277961
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
The files are created by the CMS system on the fly so I kinda need to rely
on the ColdFusion engine to compile them first off as each page, per
user/project is unique.

It's no huge deal I was just trying to claw back those extra milliseconds
:-)





"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Andrew Scott
To: CF-Talk
Sent: Sun May 13 13:36:32 2007
Subject: Re: Speeding up first hit compile time

Neil...

not sure if this is an option or not.. Not sure how you are creating your on
the fly code, or template. But have you considered running a an execute or
something on the creation of that file to compile it? just a thought, not
sure if there is a setting in the Administrator or not. to help speed it up
though.



On 5/13/07, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> Yeah but that is an advance process which is not an option... as you know
> first hand :-) our CMS generates files on the fly during editing/creation
> which I was trying to speed up.
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Andy Allan
> To: CF-Talk
> Sent: Sun May 13 11:23:51 2007
> Subject: Re: Speeding up first hit compile time
>
> cfcompile
>
> On 13/05/07, Robertson-Ravo, Neil (RX)
> <[EMAIL PROTECTED]>
> wrote:
> >
> > 'Ello
> >
> > Is there anyway to speed up the first hit compile time of templates (not
> > by
> > extensive cachine of class files etc) I mean speed up the actual process
> > as
> > if it was running clean each time.
> >
> > Is it a case of JVM tweaks or a case of living with the first hit speed
> > out
> > of the box?
> >
> > Cheers
> >
> > Neil
> >
> >
> > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> > Registered in England, Number 678540.  It contains information which is
> > confidential and may also be privileged.  It is for the exclusive use of
> > the
> > intended recipient(s).  If you are not the intended recipient(s) please
> > note
> > that any form of distribution, copying or use of this communication or
> the
> > information in it is strictly prohibited and may be unlawful.  If you
> have
> > received this communication in error please return it to the sender or
> > call
> > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > this
> > communication are not necessarily those expressed by Reed Exhibitions."
> > Visit our website at http://www.reedexpo.com
> >
> >
> >
>
>
>
> 



~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277960
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Andrew Scott
Neil...

not sure if this is an option or not.. Not sure how you are creating your on
the fly code, or template. But have you considered running a an execute or
something on the creation of that file to compile it? just a thought, not
sure if there is a setting in the Administrator or not. to help speed it up
though.



On 5/13/07, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> Yeah but that is an advance process which is not an option... as you know
> first hand :-) our CMS generates files on the fly during editing/creation
> which I was trying to speed up.
>
>
>
>
>
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
> -Original Message-
> From: Andy Allan
> To: CF-Talk
> Sent: Sun May 13 11:23:51 2007
> Subject: Re: Speeding up first hit compile time
>
> cfcompile
>
> On 13/05/07, Robertson-Ravo, Neil (RX)
> <[EMAIL PROTECTED]>
> wrote:
> >
> > 'Ello
> >
> > Is there anyway to speed up the first hit compile time of templates (not
> > by
> > extensive cachine of class files etc) I mean speed up the actual process
> > as
> > if it was running clean each time.
> >
> > Is it a case of JVM tweaks or a case of living with the first hit speed
> > out
> > of the box?
> >
> > Cheers
> >
> > Neil
> >
> >
> > "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> > Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> > Registered in England, Number 678540.  It contains information which is
> > confidential and may also be privileged.  It is for the exclusive use of
> > the
> > intended recipient(s).  If you are not the intended recipient(s) please
> > note
> > that any form of distribution, copying or use of this communication or
> the
> > information in it is strictly prohibited and may be unlawful.  If you
> have
> > received this communication in error please return it to the sender or
> > call
> > our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> > this
> > communication are not necessarily those expressed by Reed Exhibitions."
> > Visit our website at http://www.reedexpo.com
> >
> >
> >
>
>
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277959
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
Yeah but that is an advance process which is not an option... as you know
first hand :-) our CMS generates files on the fly during editing/creation
which I was trying to speed up.







"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Andy Allan
To: CF-Talk
Sent: Sun May 13 11:23:51 2007
Subject: Re: Speeding up first hit compile time

cfcompile

On 13/05/07, Robertson-Ravo, Neil (RX)
<[EMAIL PROTECTED]>
wrote:
>
> 'Ello
>
> Is there anyway to speed up the first hit compile time of templates (not
> by
> extensive cachine of class files etc) I mean speed up the actual process
> as
> if it was running clean each time.
>
> Is it a case of JVM tweaks or a case of living with the first hit speed
> out
> of the box?
>
> Cheers
>
> Neil
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
>
> 



~|
Create Web Applications With ColdFusion MX7 & Flex 2. 
Build powerful, scalable RIAs. Free Trial
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJS 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277958
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Speeding up first hit compile time

2007-05-13 Thread Andy Allan
cfcompile

On 13/05/07, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]>
wrote:
>
> 'Ello
>
> Is there anyway to speed up the first hit compile time of templates (not
> by
> extensive cachine of class files etc) I mean speed up the actual process
> as
> if it was running clean each time.
>
> Is it a case of JVM tweaks or a case of living with the first hit speed
> out
> of the box?
>
> Cheers
>
> Neil
>
>
> "This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
> Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
> Registered in England, Number 678540.  It contains information which is
> confidential and may also be privileged.  It is for the exclusive use of
> the
> intended recipient(s).  If you are not the intended recipient(s) please
> note
> that any form of distribution, copying or use of this communication or the
> information in it is strictly prohibited and may be unlawful.  If you have
> received this communication in error please return it to the sender or
> call
> our switchboard on +44 (0) 20 89107910.  The opinions expressed within
> this
> communication are not necessarily those expressed by Reed Exhibitions."
> Visit our website at http://www.reedexpo.com
>
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277957
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Speeding up first hit compile time

2007-05-13 Thread Robertson-Ravo, Neil (RX)
'Ello

Is there anyway to speed up the first hit compile time of templates (not by
extensive cachine of class files etc) I mean speed up the actual process as
if it was running clean each time.

 Is it a case of JVM tweaks or a case of living with the first hit speed out
of the box?

Cheers

Neil


"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant,
Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions." 
Visit our website at http://www.reedexpo.com


~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277956
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Reading cookie from ASP.Net to CF

2007-05-13 Thread Andrew Scott
James that is actually a good point...

If you don't have it yet, getfirebug.com and install this for Firefox it
will be the best tool you ever use. It will shows all the cookies etc that
is sent with the request etc and you can debug more and do more than the Web
Developer toolbar.


On 5/13/07, James Holmes <[EMAIL PROTECTED]> wrote:
>
> Well then that's going to be a problem. If the cookie isn't showing up
> then you are not going  to be able to read it.
>
> Confirm that the cookie is being set for the right domain - the
> firefox Web Developer toolbar will help show what cookeis are set.
>
> On 5/11/07, Venkatesh Raman wrote:
> > Thanks for your reply. I tried the CFDUMP. All I see is CFsession and
> CFID. I did not see any cookie.
> --
> mxAjax / CFAjax docs and other useful articles:
> http://www.bifrost.com.au/blog/
>
> 

~|
ColdFusion MX7 and Flex 2 
Build sales & marketing dashboard RIA’s for your business. Upgrade now
http://www.adobe.com/products/coldfusion/flex2?sdid=RVJT

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277955
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Reading cookie from ASP.Net to CF

2007-05-13 Thread James Holmes
Well then that's going to be a problem. If the cookie isn't showing up
then you are not going  to be able to read it.

Confirm that the cookie is being set for the right domain - the
firefox Web Developer toolbar will help show what cookeis are set.

On 5/11/07, Venkatesh Raman wrote:
> Thanks for your reply. I tried the CFDUMP. All I see is CFsession and CFID. I 
> did not see any cookie.
-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:277954
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4