Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
b4855f73
Commit
b4855f73
authored
Jun 28, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo fixes [skip ci]
parent
504c5a14
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
caching-page.md
docs/guide-es/caching-page.md
+2
-2
intro-upgrade-from-v1.md
docs/guide-es/intro-upgrade-from-v1.md
+1
-1
intro-upgrade-from-v1.md
docs/guide-pt-BR/intro-upgrade-from-v1.md
+1
-1
caching-page.md
docs/guide-ru/caching-page.md
+2
-2
caching-page.md
docs/guide/caching-page.md
+2
-2
rest-controllers.md
docs/guide/rest-controllers.md
+1
-1
No files found.
docs/guide-es/caching-page.md
View file @
b4855f73
...
...
@@ -5,7 +5,7 @@ El caché de páginas se refiere a guardar el contenido de toda una página en e
Posteriormente, cuando la misma página sea requerida de nuevo, su contenido será devuelto desde el caché en vez de
volver a generarlo desde cero.
El almacenamiento en caché de páginas está soportado por
[
[yii\filters\PageCache
]
], un
[
filtro de acción
](
runtime-filtering
.md
)
.
El almacenamiento en caché de páginas está soportado por
[
[yii\filters\PageCache
]
], un
[
filtro de acción
](
structure-filters
.md
)
.
Puede ser utilizado de la siguiente forma en un controlador:
```
php
...
...
@@ -35,7 +35,7 @@ artículos ha cambiado.
Como puedes ver, el caché de páginas es muy similar al
[
caché de fragmentos
](
caching-fragment.md
)
. Ambos soportan opciones
tales como
`duration`
,
`dependencies`
,
`variations`
, y
`enabled`
. Su principal diferencia es que el caché de páginas es
implementado como un
[
filtro de acción
](
runtime-filtering
.md
)
mientras que el caché de fragmentos se hace en un
[
widget
](
structure-widgets.md
)
.
implementado como un
[
filtro de acción
](
structure-filters
.md
)
mientras que el caché de fragmentos se hace en un
[
widget
](
structure-widgets.md
)
.
Puedes usar el
[
caché de fragmentos
](
caching-fragment.md
)
así como
[
contenido dinámico
](
caching-fragment.md#dynamic-content
)
junto con el caché de páginas.
...
...
docs/guide-es/intro-upgrade-from-v1.md
View file @
b4855f73
...
...
@@ -323,7 +323,7 @@ public function behaviors()
}
```
Consulta la sección
[
Filtrando
](
runtime-filtering
.md
)
para una mayor información acerca del tema.
Consulta la sección
[
Filtrando
](
structure-filters
.md
)
para una mayor información acerca del tema.
Assets
...
...
docs/guide-pt-BR/intro-upgrade-from-v1.md
View file @
b4855f73
...
...
@@ -368,7 +368,7 @@ public function behaviors()
}
```
Por favor consulte a seção [Filtering](
runtime-filtering
.md) para mais detalhes.
Por favor consulte a seção [Filtering](
structure-filters
.md) para mais detalhes.
Assets
...
...
docs/guide-ru/caching-page.md
View file @
b4855f73
...
...
@@ -4,7 +4,7 @@
Кэширование страниц — это кэширование всего содержимого страницы на стороне сервера. Позже когда эта страница
будет снова запрошена, сервер вернет её из кэша вместо того что бы генерировать её заново.
Кэширование страниц осуществляется при помощи
[
[yii\filters\PageCache
]
] и
[
фильтра действия
](
runtime-filtering
.md
)
.
Кэширование страниц осуществляется при помощи
[
[yii\filters\PageCache
]
] и
[
фильтра действия
](
structure-filters
.md
)
.
Это может быть использовано в классе контроллера как показано ниже:
```
php
...
...
@@ -34,7 +34,7 @@ public function behaviors()
Как вы можете видеть, кэширование страниц очень похоже на
[
кэширования фрагмента
](
caching-fragment.md
)
. Оба этих варианта
поддерживают параметры:
`duration`
(продолжительность),
`dependencies`
(зависимости),
`variations`
(вариации), и
`enabled`
(включения). Их главное отличие заключается в том что кэширования страницы реализована как
[
фильтр действия
](
runtime-filtering
.md
)
а кэширования фрагмента как
[
виджет
](
structure-widgets.md
)
.
[
фильтр действия
](
structure-filters
.md
)
а кэширования фрагмента как
[
виджет
](
structure-widgets.md
)
.
Вы можете использовать
[
кэширования фрагмента
](
caching-fragment.md
)
, a также
[
динамический контент
](
caching-fragment.md#dynamic-content
)
вместе с кэшированием страницы.
docs/guide/caching-page.md
View file @
b4855f73
...
...
@@ -4,7 +4,7 @@ Page Caching
Page caching refers to caching the content of a whole page on the server side. Later when the same page
is requested again, its content will be served from the cache instead of regenerating it from scratch.
Page caching is supported by
[
[yii\filters\PageCache
]
], an
[
action filter
](
runtime-filtering
.md
)
.
Page caching is supported by
[
[yii\filters\PageCache
]
], an
[
action filter
](
structure-filters
.md
)
.
It can be used like the following in a controller class:
```
php
...
...
@@ -33,7 +33,7 @@ and the cached page should be invalidated if the total number of posts is change
As you can see, page caching is very similar to
[
fragment caching
](
caching-fragment.md
)
. They both support options such
as
`duration`
,
`dependencies`
,
`variations`
, and
`enabled`
. Their main difference is that page caching is
implemented as an
[
action filter
](
runtime-filtering
.md
)
while fragment caching a
[
widget
](
structure-widgets.md
)
.
implemented as an
[
action filter
](
structure-filters
.md
)
while fragment caching a
[
widget
](
structure-widgets.md
)
.
You can use
[
fragment caching
](
caching-fragment.md
)
as well as
[
dynamic content
](
caching-fragment.md#dynamic-content
)
together with page caching.
...
...
docs/guide/rest-controllers.md
View file @
b4855f73
...
...
@@ -47,7 +47,7 @@ public function actionView($id)
## Filters <a name="filters"></a>
Most RESTful API features provided by
[
[yii\rest\Controller
]
] are implemented in terms of
[
filters
](
runtime-filtering
.md
)
.
Most RESTful API features provided by
[
[yii\rest\Controller
]
] are implemented in terms of
[
filters
](
structure-filters
.md
)
.
In particular, the following filters will be executed in the order they are listed:
*
[
[yii\filters\ContentNegotiator|contentNegotiator
]
]: supports content negotiation, to be explained in
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment