You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/advanced/search.md
+57Lines changed: 57 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,10 @@ star: true
30
30
31
31
:::
32
32
33
+
<br/>
34
+
35
+
36
+
33
37
### **Difference between different search indexes**
34
38
35
39
-`database`: Search by database, which is using the existing data.db. It will create a new table, record the parent directory, name, and size of every object, but the search does not split words which means that match whether the keywords you enter appear in the name of object. In general, if you don't have a specific search requirement, we recommend you choose it.
@@ -59,13 +63,21 @@ Full-text search: It will not search in the text of all files, don't get it wron
59
63
60
64
:::
61
65
66
+
<br/>
67
+
68
+
69
+
62
70
### **Search tips**
63
71
64
72
- If you want to search for a specific folder, you must choose `database` as the search index;
65
73
- If you choose `database` as the search index and the type of your database is `sqlite3`, we suggest that you don't make any changes in the admin page while building the index, as sqlite3 does not support concurrent writes and can cause `database-lock` issues;
66
74
- If you choose `bleve` as the search index, and if you want to search for new files or if you don't want to search for deleted files, the index needs to be completely rebuilt to take effect because `bleve` does not support incremental updates;
67
75
- But for `database`, it supports incremental updates, so you can search for new files or deleted files just by access the modified folder (and click `refresh` icon if cached) without rebuilding the index, which is much more convenient than `bleve`.
68
76
77
+
<br/>
78
+
79
+
80
+
69
81
### **Ignore paths**
70
82
71
83
Paths to be skipped during index building, one path per line, multiple lines can be filled
@@ -76,6 +88,10 @@ Paths to be skipped during index building, one path per line, multiple lines can
76
88
- /bbb network disk/ccc folder
77
89
78
90
91
+
<br/>
92
+
93
+
94
+
79
95
### **Update index**
80
96
81
97
- (formerly: the path to update the index)
@@ -88,6 +104,10 @@ Paths to be skipped during index building, one path per line, multiple lines can
88
104
89
105
- /bbb network disk/ccc folder
90
106
107
+
<br/>
108
+
109
+
110
+
91
111
### **Automatically update the index**
92
112
93
113
:warning:**`The default is off, and the index will not be built automatically`**
@@ -111,6 +131,10 @@ Paths to be skipped during index building, one path per line, multiple lines can
111
131
-[**Automatically update index**](#automatically-update-the-index): suitable for users who build indexes for all files
112
132
-[**Update Index**](#update-index): Suitable for **not** to build indexes for all files, but there are files that need to be built, manually build indexes to avoid all being indexed
113
133
134
+
<br/>
135
+
136
+
137
+
114
138
### **Maximum index depth**
115
139
116
140
default 20.
@@ -131,3 +155,36 @@ Explanation: The directory can enter up to several layers. For example, if you h
131
155
132
156
- After building an index, users without permissions can search for hidden file/folder solutions [click to view](meta.md#tips)
133
157
158
+
<br/>
159
+
160
+
161
+
162
+
### **The database file is very large, what should I do if it is still the same after clearing the index?**
163
+
164
+
Normal users do not modify the database options. They use the `sqlite` database to build indexes, which will cause the database file to be particularly large
165
+
166
+
- -Data files, `Data` folders in the same directory in Alist program,`data.db,data.db-shm,data.db-wal`
167
+
168
+
After turning on the constructive index, the more the number you build, the larger the files. Finally, you accidentally occupy the machine's hard disk, and then click the clear index button. What should I do if the file is still as big?
169
+
170
+
- This is caused by the cache of `sqlite`, there are two solutions
171
+
172
+
1. We use commands or tools to connect to `sqlite` database, input:**`VACUUM;`**
173
+
174
+
```sqlite
175
+
VACUUM;
176
+
```
177
+
178
+
2. After using the command to clean up, we replace it with `mysql` database before constructing indexes
179
+
- Sqlite replaced with mysql database tutorial:**[BV1iV4y1T7kh](https://www.bilibili.com/video/BV1iV4y1T7kh)**
180
+
181
+
Comparison after cleaning the command: The picture above shows before cleaning up, and the following figure shows that after cleaning, you can execute several commands several times if there is no effect.
182
+
183
+

184
+
185
+
-----
186
+
187
+
`data.db, data.db-shm, data.db-wal` when backup, when backup,`data.db-shm,data.db-wal`Do these two files need backup?
188
+
189
+
- In the backup, stop the program first, and then backup. You only need to backup the `data.db` database file. The other two do not need to backup
190
+
- It may be after you stop the program`data.db-shm,data.db-wal`will automatically disappear, don't worry
Copy file name to clipboardExpand all lines: docs/guide/drivers/115.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,8 @@ Due to the limitation of 115 Cloud, the download must carry cookies, so only the
28
28
29
29
Open the official website of 115 Cloud and click the string behind the url when you click into the folder you want to set, such as <https://115.com/?cid=249163533602609229&offset=0&tab=&mode=wangpan>, which is `249163533602609229`
-**v.3.27.0** version Enhanced Rapid upload: You can directly upload files with `Alibaba Cloud Disk Open` by copying
120
+
121
+
- The premise is to upload the file from 115 Rapid upload to Alibaba Cloud Disk Open, the file already exists in Alibaba Cloud Disk Open, otherwise it is a normal copy task.
122
+
123
+
If you want to upload files using Miaochuan, it is recommended to build an AList locally on your home computer and add a `local storage` and `115 cloud disk` to copy Miaochuan to save resources.
Copy file name to clipboardExpand all lines: docs/guide/drivers/Crypt.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,14 +157,24 @@ It can be treated as the second password if you don't understand it
157
157
158
158
### **Encrypted suffix**
159
159
160
-
The default is `.bin`, the custom must start with` .`, such as .abc .aaa .Psd.
160
+
Advanced options,The default is `.bin`, the custom must start with` .`, such as .abc .aaa .Psd.
161
161
162
162
If the file name is encrypted, the encryption suffix `will not be used
163
163
164
164
<br/>
165
165
166
166
167
167
168
+
### **Filename encoding**
169
+
170
+
Advanced options, non -professionals, please do not modify it. The default is **`base64`**, but the options other than **`base64`** are not tested. If you encounter problems, you need to solve it yourself.
0 commit comments