fix(Gradle-Build)

refactoring(Backend)
TODO-Roadmap.md
This commit is contained in:
stefan
2025-08-14 10:54:39 +02:00
parent d0232c23a0
commit 9811eb6130
3 changed files with 269 additions and 3 deletions
@@ -9,6 +9,7 @@ import com.fasterxml.jackson.module.kotlin.KotlinModule
import com.fasterxml.jackson.module.kotlin.readValue
import java.io.ByteArrayInputStream
import java.io.ByteArrayOutputStream
import java.util.Objects
import java.util.zip.GZIPInputStream
import java.util.zip.GZIPOutputStream
import kotlin.time.ExperimentalTime
@@ -88,9 +89,9 @@ class JacksonCacheSerializer : CacheSerializer {
if (key != other.key) return false
if (!valueBytes.contentEquals(other.valueBytes)) return false
if (valueType != other.valueType) return false
if (!createdAt.equals(other.createdAt)) return false
if (expiresAt != other.expiresAt && expiresAt?.equals(other.expiresAt) != true) return false
if (!lastModifiedAt.equals(other.lastModifiedAt)) return false
if (!Objects.equals(createdAt, other.createdAt)) return false
if (!Objects.equals(expiresAt, other.expiresAt)) return false
if (!Objects.equals(lastModifiedAt, other.lastModifiedAt)) return false
if (isDirty != other.isDirty) return false
if (isLocal != other.isLocal) return false