forked from redis/jedis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
55 lines (50 loc) · 1.54 KB
/
mkdocs.yml
File metadata and controls
55 lines (50 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
site_name: Jedis
repo_name: Jedis
site_author: Redis, Inc.
site_description: Jedis is a Redis client for the JVM.
repo_url: https://github.com/redis/jedis
remote_branch: gh-pages
theme:
name: material
logo: assets/images/logo.png
favicon: assets/images/favicon-16x16.png
extra_css:
- css/extra.css
plugins:
- search
- macros:
include_dir: .
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition
- pymdownx.details
nav:
- Home: index.md
- Jedis Maven: jedis-maven.md
- User Guide:
- Transactions/Multi: transactions-multi.md
- Migrating to newer versions:
- Jedis 7: migration-guides/v6-to-v7.md
- Jedis 6: migration-guides/v5-to-v6.md
- Jedis 5: migration-guides/v4-to-v5.md
- Jedis 4:
- Breaking changes: migration-guides/v3-to-v4.md
- Primitives: migration-guides/v3-to-v4-primitives.md
- ZSET: migration-guides/v3-to-v4-zset-list.md
- Using Jedis with ...:
- Search: redisearch.md
- JSON: redisjson.md
- Failover: failover.md
- Verifying artifacts: verifying-artifacts.md
- FAQ: faq.md
- API Reference: https://www.javadoc.io/doc/redis.clients/jedis/latest/index.html
- Tutorials and Examples: tutorials_examples.md
- Jedis Guide: https://redis.io/docs/latest/develop/connect/clients/java/jedis/
- Redis Command Reference: https://redis.io/docs/latest/commands/
- Advanced Usage: advanced-usage.md