You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-dev@quetz.apache.org by "Jim Gallacher (JIRA)" <ji...@apache.org> on 2006/03/11 16:34:01 UTC

[jira] Created: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

Make number of mutex locks configurable at apache startup
---------------------------------------------------------

         Key: MODPYTHON-145
         URL: http://issues.apache.org/jira/browse/MODPYTHON-145
     Project: mod_python
        Type: New Feature
  Components: core  
    Versions: 3.3    
    Reporter: Jim Gallacher
 Assigned to: Jim Gallacher 
    Priority: Minor


The number of locks can already be specified at compile time usine ./configure --with-max-locks=value
For completeness, the maximum number of mutex locks created by python_init should be configurable via a PythonOption. The number of locks will only be set if the PythonOption directive appears in the server context. Any other context will be ignored.

PythonOption mod_python.mutex_locks value

The implementation of this will be similar to the code required for http://issues.apache.org/jira/browse/MODPYTHON-131.

The number of locks can already be specified at compile time usine ./configure --with-max-locks=value

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

Posted by "Jim Gallacher (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/MODPYTHON-145?page=all ]
     
Jim Gallacher resolved MODPYTHON-145:
-------------------------------------

    Fix Version: 3.3
     Resolution: Fixed

> Make number of mutex locks configurable at apache startup
> ---------------------------------------------------------
>
>          Key: MODPYTHON-145
>          URL: http://issues.apache.org/jira/browse/MODPYTHON-145
>      Project: mod_python
>         Type: New Feature
>   Components: core
>     Versions: 3.3
>     Reporter: Jim Gallacher
>     Assignee: Jim Gallacher
>     Priority: Minor
>      Fix For: 3.3

>
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value
> For completeness, the maximum number of mutex locks created by python_init should be configurable via a PythonOption. The number of locks will only be set if the PythonOption directive appears in the server context. Any other context will be ignored.
> PythonOption mod_python.mutex_locks value
> The implementation of this will be similar to the code required for http://issues.apache.org/jira/browse/MODPYTHON-131.
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

Posted by "Graham Dumpleton (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MODPYTHON-145?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Graham Dumpleton closed MODPYTHON-145.
--------------------------------------


> Make number of mutex locks configurable at apache startup
> ---------------------------------------------------------
>
>                 Key: MODPYTHON-145
>                 URL: https://issues.apache.org/jira/browse/MODPYTHON-145
>             Project: mod_python
>          Issue Type: New Feature
>          Components: core
>    Affects Versions: 3.3
>            Reporter: Jim Gallacher
>         Assigned To: Jim Gallacher
>            Priority: Minor
>             Fix For: 3.3, 3.2.10
>
>
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value
> For completeness, the maximum number of mutex locks created by python_init should be configurable via a PythonOption. The number of locks will only be set if the PythonOption directive appears in the server context. Any other context will be ignored.
> PythonOption mod_python.mutex_locks value
> The implementation of this will be similar to the code required for http://issues.apache.org/jira/browse/MODPYTHON-131.
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

Posted by "Jim Gallacher (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/MODPYTHON-145?page=all ]
     
Work on MODPYTHON-145 started by Jim Gallacher

> Make number of mutex locks configurable at apache startup
> ---------------------------------------------------------
>
>          Key: MODPYTHON-145
>          URL: http://issues.apache.org/jira/browse/MODPYTHON-145
>      Project: mod_python
>         Type: New Feature
>   Components: core
>     Versions: 3.3
>     Reporter: Jim Gallacher
>     Assignee: Jim Gallacher
>     Priority: Minor

>
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value
> For completeness, the maximum number of mutex locks created by python_init should be configurable via a PythonOption. The number of locks will only be set if the PythonOption directive appears in the server context. Any other context will be ignored.
> PythonOption mod_python.mutex_locks value
> The implementation of this will be similar to the code required for http://issues.apache.org/jira/browse/MODPYTHON-131.
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

Posted by "Jim Gallacher (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/MODPYTHON-145?page=comments#action_12369996 ] 

Jim Gallacher commented on MODPYTHON-145:
-----------------------------------------

Use of this PythonOption to configure apache in the unit tests interferes with unit tests which are testing the PythonOption itself. These other tests assume that PythonOption is only used in the testing of PythonOption, and will need to be rewritten if we want to take advantage of PythonOption mod_python.mutex_locks or PythonOption mod_python.mutex_directory in the tests. 

> Make number of mutex locks configurable at apache startup
> ---------------------------------------------------------
>
>          Key: MODPYTHON-145
>          URL: http://issues.apache.org/jira/browse/MODPYTHON-145
>      Project: mod_python
>         Type: New Feature
>   Components: core
>     Versions: 3.3
>     Reporter: Jim Gallacher
>     Assignee: Jim Gallacher
>     Priority: Minor

>
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value
> For completeness, the maximum number of mutex locks created by python_init should be configurable via a PythonOption. The number of locks will only be set if the PythonOption directive appears in the server context. Any other context will be ignored.
> PythonOption mod_python.mutex_locks value
> The implementation of this will be similar to the code required for http://issues.apache.org/jira/browse/MODPYTHON-131.
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (MODPYTHON-145) Make number of mutex locks configurable at apache startup

Posted by "Graham Dumpleton (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/MODPYTHON-145?page=all ]

Graham Dumpleton updated MODPYTHON-145:
---------------------------------------

    Fix Version/s: 3.2.10

> Make number of mutex locks configurable at apache startup
> ---------------------------------------------------------
>
>                 Key: MODPYTHON-145
>                 URL: http://issues.apache.org/jira/browse/MODPYTHON-145
>             Project: mod_python
>          Issue Type: New Feature
>          Components: core
>    Affects Versions: 3.3
>            Reporter: Jim Gallacher
>         Assigned To: Jim Gallacher
>            Priority: Minor
>             Fix For: 3.3, 3.2.10
>
>
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value
> For completeness, the maximum number of mutex locks created by python_init should be configurable via a PythonOption. The number of locks will only be set if the PythonOption directive appears in the server context. Any other context will be ignored.
> PythonOption mod_python.mutex_locks value
> The implementation of this will be similar to the code required for http://issues.apache.org/jira/browse/MODPYTHON-131.
> The number of locks can already be specified at compile time usine ./configure --with-max-locks=value

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira