Warning: session_start(): open(/var/lib/php/sessions/sess_ajgt48dg6l7u7uogqdip8bel3i, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// a deflater that writes out buffered data on flush()
// (and also flushes the underlying stream)
// You can use this for highly compressed piece-wise streams
// such as logs or websockets where each piece is compressed
// using the dictionaries of earlier pieces.
// For client-side try: https://github.com/dasmoth/jszlib
static DeflaterOutputStream deflaterOutputStream_syncFlush(File f) ctex {
ret new DeflaterOutputStream(newFileOutputStream(f), true);
}
static DeflaterOutputStream deflaterOutputStream_syncFlush(OutputStream out) ctex {
ret new DeflaterOutputStream(out, true);
}