hybrid and PML

This commit is contained in:
DarkGopher 2025-06-25 22:54:16 +02:00
parent 6e35a53b56
commit fd11327b7f
2 changed files with 32 additions and 0 deletions

6
storage/hybrid/hybrid.go Normal file
View file

@ -0,0 +1,6 @@
// Package hybrid is session storage that use RAM
// and provider modification log (PML) for very fast efecient
// session operations and filsystem saving using SPML
// save session data into filesystem lazy save. PML is similar to
// WAL in databases
package hybrid