-
Notifications
You must be signed in to change notification settings - Fork 6
/
NEWS
45 lines (29 loc) · 1.02 KB
/
NEWS
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
What is new in 0.4.0
--------------------
* Reworked data storage. Instead of one huge record for each
file we now store the data in 4kB blocks. That greatly
improves performance, storage efficiency and overcomes
problems when storing files larger than 1MB. As a side
effect it allows storing "sparse" files.
What is new in 0.3.1
--------------------
* Added missing schema.sql to the distribution tarball.
What is new in 0.3
------------------
* Complete set of essential operations is now available.
* Fixed most (all?) bugs from previous implementations,
especially for write().
* Reworked database schema - now with separate tables
for directory tree, for inodes and for data.
* Rewritten pooling to avoid "Aieee, we're out of connections!"
errors.
* Requires MySQL 5.0.x or higher.
What is new in 0.2
------------------
* Improvement of performance by mysql connection pooling.
* Update atime, mtime.
* Implement chmod().
* Some error processing.
What is new in 0.1
------------------
* Initial release.