Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyberbolt committed Mar 30, 2022
1 parent 705abc7 commit a428c67
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ for v in list1:
99


It is strongly recommended to use a for loop to iterate CyberDict, each iteration will get v from the server, and the space complexity of the client is o(1). Iteration can also be used for CyberDict. In the iteration of CyberDict, the client space complexity is o(n), and n is the size of CyberDict.keys().
It is strongly recommended to use a for loop to iterate CyberList, each iteration will get v from the server, and the space complexity of the client is o(1). Iteration can also be used for CyberDict. In the iteration of CyberDict, the client space complexity is o(n), and n is the size of CyberDict.keys().

#### Release the Proxy Object

Expand Down
2 changes: 1 addition & 1 deletion README_CHN.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ for v in list1:
99


强烈推荐使用 for 循环迭代 CyberDict,每次迭代将从服务端获取 v,客户端的空间复杂度为 o(1)。迭代同样可用于 CyberDict,CyberDict 的迭代中,客户端空间复杂度为 o(n), n 为 CyberDict.keys() 的长度。
强烈推荐使用 for 循环迭代 CyberList,每次迭代将从服务端获取 v,客户端的空间复杂度为 o(1)。迭代同样可用于 CyberDict,CyberDict 的迭代中,客户端空间复杂度为 o(n), n 为 CyberDict.keys() 的长度。

#### 释放 proxy 对象

Expand Down
Binary file modified documentation/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion documentation/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ for v in list1:
99


It is strongly recommended to use a for loop to iterate CyberDict, each iteration will get v from the server, and the space complexity of the client is o(1). Iteration can also be used for CyberDict. In the iteration of CyberDict, the client space complexity is o(n), and n is the size of CyberDict.keys().
It is strongly recommended to use a for loop to iterate CyberList, each iteration will get v from the server, and the space complexity of the client is o(1). Iteration can also be used for CyberDict. In the iteration of CyberDict, the client space complexity is o(n), and n is the size of CyberDict.keys().

#### Release the Proxy Object

Expand Down
4 changes: 2 additions & 2 deletions documentation/site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ <h5 id="common-operations-of-cyberlist">Common Operations of CyberList</h5>
100
99
</code></pre>
<p>It is strongly recommended to use a for loop to iterate CyberDict, each iteration will get v from the server, and the space complexity of the client is o(1). Iteration can also be used for CyberDict. In the iteration of CyberDict, the client space complexity is o(n), and n is the size of CyberDict.keys().</p>
<p>It is strongly recommended to use a for loop to iterate CyberList, each iteration will get v from the server, and the space complexity of the client is o(1). Iteration can also be used for CyberDict. In the iteration of CyberDict, the client space complexity is o(n), and n is the size of CyberDict.keys().</p>
<h4 id="release-the-proxy-object">Release the Proxy Object</h4>
<p>After the use is complete, return the connection of the proxy to the connection pool.</p>
<pre><code class="language-python">proxy.close()
Expand Down Expand Up @@ -351,5 +351,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.2.3
Build Date UTC : 2022-03-30 10:21:30.258503+00:00
Build Date UTC : 2022-03-30 14:13:44.443433+00:00
-->
2 changes: 1 addition & 1 deletion documentation/site/search/search_index.json

Large diffs are not rendered by default.

Binary file modified documentation/site/sitemap.xml.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion documentation_chn/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ for v in list1:
99


强烈推荐使用 for 循环迭代 CyberDict,每次迭代将从服务端获取 v,客户端的空间复杂度为 o(1)。迭代同样可用于 CyberDict,CyberDict 的迭代中,客户端空间复杂度为 o(n), n 为 CyberDict.keys() 的长度。
强烈推荐使用 for 循环迭代 CyberList,每次迭代将从服务端获取 v,客户端的空间复杂度为 o(1)。迭代同样可用于 CyberDict,CyberDict 的迭代中,客户端空间复杂度为 o(n), n 为 CyberDict.keys() 的长度。

#### 释放 proxy 对象

Expand Down
4 changes: 2 additions & 2 deletions documentation_chn/site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ <h5 id="cyberlist">CyberList 常用操作</h5>
100
99
</code></pre>
<p>强烈推荐使用 for 循环迭代 CyberDict每次迭代将从服务端获取 v客户端的空间复杂度为 o(1)。迭代同样可用于 CyberDictCyberDict 的迭代中客户端空间复杂度为 o(n), n CyberDict.keys() 的长度</p>
<p>强烈推荐使用 for 循环迭代 CyberList每次迭代将从服务端获取 v客户端的空间复杂度为 o(1)。迭代同样可用于 CyberDictCyberDict 的迭代中客户端空间复杂度为 o(n), n CyberDict.keys() 的长度</p>
<h4 id="proxy_2">释放 proxy 对象</h4>
<p>使用完成 proxy 的连接归还至连接池即可</p>
<pre><code class="language-python">proxy.close()
Expand Down Expand Up @@ -347,5 +347,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.2.3
Build Date UTC : 2022-03-30 10:21:42.842047+00:00
Build Date UTC : 2022-03-30 14:13:36.221961+00:00
-->
2 changes: 1 addition & 1 deletion documentation_chn/site/search/search_index.json

Large diffs are not rendered by default.

Binary file modified documentation_chn/site/sitemap.xml.gz
Binary file not shown.

0 comments on commit a428c67

Please sign in to comment.