File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,14 @@ pkvdb2.get("Key");
59
59
60
60
### Current version 当前版本
61
61
62
- ##### 1.0.0 (Library 库) / 0.8 (Demo 演示)
62
+ ##### 1.0.2 (Library 库) / 0.8 (Demo 演示)
63
63
64
64
### Changelog 更新说明
65
65
66
+ ##### 1.0.2+
67
+
68
+ * Added: Specific getters, less cast! 新增: 特定类型的Getter,免去Cast烦恼。
69
+
66
70
##### 1.0.0+
67
71
68
72
* New type: High capacity key-value database 新增数据库类型: 大容量键值数据库
@@ -211,6 +215,9 @@ qkvdb.put(k,v); //Put everything as you like
211
215
212
216
``` java
213
217
qkvdb. get(" something_key" );
218
+ qkvdb. getString(" a_string" );
219
+ qkvdb. getInt(" an_int" );
220
+ // ... and more specific getters were added after v1.0.2
214
221
```
215
222
216
223
##### Remove data 移除数据
@@ -406,6 +413,6 @@ See the License for the specific language governing permissions and
406
413
limitations under the License.
407
414
```
408
415
409
- [ LICENSE 协议全文 ] ( LICENSE )
416
+ [ LICENSE 授权许可文件 ] ( LICENSE )
410
417
411
- [ NOTICE 声明 ] ( NOTICE )
418
+ [ NOTICE 授权声明 ] ( NOTICE )
You can’t perform that action at this time.
0 commit comments