Skip to content

small doc fixes [ci skip] #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 4, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guide/topics-cache.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Using the Cache component
=========================

To use the `Cache` component, in addition to configuring the connection as described above,
To use the `Cache` component, in addition to configuring the connection as described in the [Installation](installation.md) section,
you also have to configure the `cache` component to be `yii\redis\Cache`:

```php
Expand All @@ -16,7 +16,7 @@ return [
];
```

If you only use the redis cache, you can also configure the parameters of the connection within the
If you only use the redis cache (i.e., not usig its ActiveRecord or Session), you can also configure the parameters of the connection within the
cache component (no connection application component needs to be configured in this case):

```php
Expand Down
6 changes: 3 additions & 3 deletions docs/guide/topics-session.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Using the Session component
===========================

To use the `Session` component, in addition to configuring the connection as described above,
To use the `Session` component, in addition to configuring the connection as described in the [Installation](installation.md) section,
you also have to configure the `session` component to be `yii\redis\Session`:

```php
Expand All @@ -16,8 +16,8 @@ return [
];
```

If you only use the redis session, you can also configure the parameters of the connection within the
cache component (no connection application component needs to be configured in this case):
If you only use redis session (i.e., not using its ActiveRecord or Cache), you can also configure the parameters of the connection within the
session component (no connection application component needs to be configured in this case):

```php
return [
Expand Down