2013/2/8 Lukas Eder <[email protected]>: >> I'll definitely do some further reading on the subject. Given that >> Java 7 can GC interned strings, my doubts have disappeared a little. >> Making this an option wouldn't hurt Java 6 users, then. > > I have registered #2177 for this issue: > https://github.com/jOOQ/jOOQ/issues/2177 > > Some simple benchmarks have shown that interning strings on a JDK 7 > doesn't hurt so much. The projected implementation will include: > > - Specifying "internable" columns at code generation time, through a > regular expression
This feature will be implemented later with #2181 https://github.com/jOOQ/jOOQ/issues/2181 > - Specifying "internable" fields at query execution time, through a > configuration in `ResultQuery.intern(Field<?>...)` (before fetching) > - Intern a column in `org.jooq.Result.intern(Field<?>...)` (after fetching) These features are implemented and available from GitHub master in jOOQ 3.0 with #2177: https://github.com/jOOQ/jOOQ/issues/2177 Cheers Lukas -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
