Alexey Volkov
Alexey Volkov
+1 for removing implicit waits or sync them with driver. Just investigated performance problems with our autotests and figure out 2 problems: 1. SlowLoadingElementList load list for 5 seconds if...
We recommend to write application code for data migration. ### Renaming entity type, property or link You can use aliases for all properties, links, blobs and entity types. Like `var...
Just in case. We accept pull requests.
> Do you create tables with Exposed. Yes. Tables created with SchemaUtils. As a result SQL query is produced by SchemaUtils.
> Do you have any SQLite specific parameters set to your connection? No. Something like this: ```kotlin val config = SQLiteConfig().also { it.setSynchronous(SQLiteConfig.SynchronousMode.OFF) it.setJournalMode(SQLiteConfig.JournalMode.OFF) it.setPageSize(32_768) it.setCacheSize(-8_000) } if (location ==...
@SergiuSuiu seems like almost done
@Damtev are there any proves that this change increases performance? - Types has less time to live period - request to find class by name is almost always hits class...
> @lehvolk `jcClass` is used in calculating the `hashCode` of the `JcClassType`, and we had met a situation when the `hashCode` of an instance of the `JcClassType` has changed. This...
@Damtev my concern is that this fix will hide a problem or will not fix the problem.
@DaniilStepanov Could you please [check this test](https://github.com/UnitTestBot/jacodb/blob/78c395cec6f953a97f76b4bfdba352d25e1ff238/jacodb-core/src/test/kotlin/org/jacodb/testing/cfg/ReverseIRTest.kt#L45) . This test is green at the moment