• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

neo-runtime.xml and coldfusion16 standard edition

New Here ,
Oct 19, 2017 Oct 19, 2017

Copy link to clipboard

Copied

Hello,

With coldfusion 11 enterprise edition , we could modify the value of following timeout (under « Server settings/ Request Tuning » ):

     "the timeout request witing in queue after ... second".

I can access to this timeout with the coldfusion 16 developer edition.

With coldfusion 16 standard edition, we can not access to this timeout with the IHM anymore, but the access can be done by the following file "cfusion/lib/neo-runtime.xml".

Could you please tell me if the modification of the neo-rutim.xml file will be took account with all coldfusion 16 edition or there are some restriction with the standard edition ?

Thanks in advance for your answer.

Audrey.

Views

708

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 20, 2017 Oct 20, 2017

Copy link to clipboard

Copied

If you modify the setting in neo-runtime.xml, ColdFusion will take it into account. For example, if you wish to have a queue timeout of 1800 seconds, the setting will be:

<var name='queueTimeout'>

      <number>1800.0</number>

</var>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 20, 2017 Oct 20, 2017

Copy link to clipboard

Copied

whatever the edition coldfusion : standard, entreprise or developer ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 21, 2017 Oct 21, 2017

Copy link to clipboard

Copied

LATEST

lionelr99409278  wrote

whatever the edition coldfusion : standard, entreprise or developer ?

Yes, with one caveat. On Standard Edition, the maximum number of threads that you can create by means of CFTHREAD is 10. On Enterprise and Developer Edition, that maximum number is determined by the setting "Maximum number of threads available for CFTHREAD" in the ColdFusion Administrator or, equivalently, by the following setting in neo-runtime.xml:

<var name='cfthreadpool'>

    <number>25</number>

</var>

Any threads created in excess of this limit are queued.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation