fmap:具有Map实现的Dart库,该实现将其元素存储在文件中。 可用作持久键值存储或缓存

时间:2024-04-19 11:16:55
【文件属性】:

文件名称:fmap:具有Map实现的Dart库,该实现将其元素存储在文件中。 可用作持久键值存储或缓存

文件大小:25KB

文件格式:ZIP

更新时间:2024-04-19 11:16:55

storage filesystem cache persistent-storage file-storage

具有Map实现的Dart库,该实现将其元素存储在文件中。 可用作缓存或持久键值存储。 var fmap = Fmap (directory); fmap[ 'keyA' ] = 'my string' ; // saved string into a file fmap[ 'keyB' ] = 777 ; // saved int into a file fmap[ 'keyC' ] = [ 0x12 , 0x34 , 0x56 ]; // saved three-bytes into a file print (fmap[ 'keyA' ]); // read from file 该对象实现Map ,因此可以以相同的方式使用。 Map fmap = Fmap (directory); print ( 'Count of items


【文件预览】:
fmap-staging
----example()
--------main.dart(624B)
----.github()
--------workflows()
----test()
--------hashing_test.dart(810B)
--------max_more_test.dart(1KB)
--------files_test.dart(925B)
--------purge_test.dart(1KB)
--------map_basic_test.dart(5KB)
--------helper.dart(4KB)
--------map_collisions_test.dart(2KB)
--------readwrite_v3_test.dart(9KB)
--------map_timestamps_test.dart(2KB)
--------map_random_test.dart(3KB)
----LICENSE(1KB)
----.gitignore(625B)
----pubspec.yaml(346B)
----lib()
--------src()
--------fmap.dart(150B)
----README.md(3KB)

网友评论