Skip to content

Commit

Permalink
TASK: Update references [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins committed May 5, 2023
1 parent 17b50f7 commit 9db50df
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1527,6 +1527,27 @@ Options



.. _`Flow Command Reference: NEOS.FLOW neos.flow:session:collectgarbage`:

``neos.flow:session:collectgarbage``
************************************

**Run garbage collection for sesions.**

This command will remove session-data and -metadate of outdated sessions
identified by lastActivityTimestamp being older than inactivityTimeout

!!! This is usually done automatically after shutdown for the percentage
of requests specified in the setting `Neos.Flow.session.garbageCollection.probability`

Use this command if you need more direct control over the cleanup intervals.







.. _`Flow Command Reference: NEOS.FLOW neos.flow:session:destroyall`:

``neos.flow:session:destroyall``
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,58 @@ Arguments



.. _`Flow Validator Reference: FileExtensionValidator`:

FileExtensionValidator
----------------------

The given $value is has one of the allowed file extensions
Note: a value of NULL or empty string ('') are considered valid

The given $value is valid media type matches one of the allowedTypes and
none of the disallowedTypes

Note: a value of NULL or empty string ('') is considered valid and was handled already

.. note:: A value of NULL or an empty string ('') is considered valid



Arguments
*********

* ``allowedExtensions`` (array): Array of allowed file extensions




.. _`Flow Validator Reference: FileSizeValidator`:

FileSizeValidator
-----------------

Validator for file sizes
Note: a value of NULL or empty string ('') are considered valid

The given $value is valid media type matches one of the allowedTypes and
none of the disallowedTypes

Note: a value of NULL or empty string ('') is considered valid and was handled already

.. note:: A value of NULL or an empty string ('') is considered valid



Arguments
*********

* ``minimum`` (integer): Minimum allowed filesize in bytes

* ``maximum`` (integer): Maximum allowed filesize in bytes




.. _`Flow Validator Reference: FloatValidator`:

FloatValidator
Expand Down Expand Up @@ -314,6 +366,33 @@ Is valid if the given value is a valid "locale identifier".



.. _`Flow Validator Reference: MediaTypeValidator`:

MediaTypeValidator
------------------

The given $value is matches the defined media types
Note: a value of NULL or empty string ('') are considered valid

The given $value is valid media type matches one of the allowedTypes and
none of the disallowedTypes

Note: a value of NULL or empty string ('') is considered valid and was handled already

.. note:: A value of NULL or an empty string ('') is considered valid



Arguments
*********

* ``allowedTypes`` (array): Array of allowed media ranges

* ``disallowedTypes`` (array): Array of disallowed media ranges




.. _`Flow Validator Reference: NotEmptyValidator`:

NotEmptyValidator
Expand Down

0 comments on commit 9db50df

Please sign in to comment.