koji 積分 1

個人體感,效能有變好!?大概有些在UI Thread上跑的有移掉的關係!?

haocheng 積分 0

現在一年出三版,每一版更新都不大...

但有定期更新還是蠻不錯的啦

IngramChen 積分 0

直接升, 目前沒遇到問題

感覺是小升級...

christinatilly 積分 0

Understanding the basic Odoo tools will provide you an insight to its development as well as customization helping you to craft the platform with ease

haocheng 積分 1

大家是不是都跑去用 VS Code 了? o_0

cloudtu 積分 1

mario 不知道有沒有版權問題,不然今年一定倒公司就要找上門來啦。

Kros 積分 1

DSL 寫多了,rainbow brackets 真是 Save the day....👍

koji 積分 3 編輯於

nyan progess bar !
--
看了這個後馬上裝了 rainbow brackets/gittoolbox

chchwy 積分 1

現在比較不推 Travis CI,因為去年開始限制給開源專案的免費時數(以前是無限)。而且現在有內建的 Github Action 可以用。

koji 積分 1
List<URLData> retrieveURLs(URL... urls) throws Exception {
  try (var executor = Executors.newVirtualThreadExecutor()) {
    var tasks = Arrays.stream(urls)
            .map(url -> (Callable<URLData>)() -> getURL(url))
            .toList();
    return executor.submit(tasks)
            .filter(Future::isCompletedNormally)
            .map(Future::join)
            .toList();
  }
}

乍看想說isCompletedNormally會true嗎,結果這是新API然後 submit(java.util.Collection)1

Returns:
    stream of completed Futures

這 code review 沒看過的會搞不懂吧

christinatilly 積分 1

Travis CI is a continuous integration tool that can be integrated with your project to automatically test and deploy on each change you made

kaif 積分 1

這對大型應用也蠻不合適的。因為她設計的時候應該沒有考慮到 DB sharding。SQL tuning 也很麻煩。分散式架構他的 cache 也沒啥用。

之前為了弄 sharding 還土炮包一層。

感覺現在應該剩下單機版的 application 比較適合。

koji 積分 1

現在周遭好像也是 MyBatis 比較多,但我記得看海外twitter之前一些調查,還是不少用JPA/Hibernate的樣子

IngramChen 積分 2

大部份都同意。所以我早早就轉 MyBatis 了

台灣因為博奕業的關係 -> 因為博奕都是中國的關係 -> 因為中國都用 MyBatis 的關係 -> MyBatis 開始在台灣比較有能見度了,就結果來說是件好事。

前後端分離後,Hibernate detached session 用不到,2nd level cache 也變成沒什麼用,是該被時代淘汱了。

zwlin 積分 1

每次接手某幾個同事的 project,都超想砍掉重寫…

haocheng 積分 1

我也是,而且這一版修好了我在 2020.3 遇到游標有時候會消失的問題…