Skip to content

Commit

Permalink
chore[doc]: update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jaysunxiao committed Mar 19, 2024
1 parent 2a5d8ea commit fcfe65f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion orm/src/main/java/com/zfoo/orm/cache/IEntityCache.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
package com.zfoo.orm.cache;

import com.zfoo.orm.model.IEntity;
import org.springframework.lang.NonNull;

import java.util.List;
import java.util.function.BiConsumer;
Expand All @@ -23,8 +24,10 @@
public interface IEntityCache<PK extends Comparable<PK>, E extends IEntity<PK>> {

/**
* 从数据库中加载数据到缓存,如果数据库不存在则返回一个id为空的默认值,并且将这个默认值加入缓存
* EN: Load data from the database to the cache and return a default value with an empty ID if the database does not exist
* CN: 从数据库中加载数据到缓存,如果数据库不存在则返回一个id为空的默认值
*/
@NonNull
E load(PK pk);

/**
Expand Down

0 comments on commit fcfe65f

Please sign in to comment.