Skip to content

Commit

Permalink
update javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
agrgr committed Jun 20, 2024
1 parent d65c93f commit ac3fff2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
import com.aerospike.client.Value;
import lombok.Getter;

/**
* Wrapper class used for caching with methods that receive either a String or a long number
*/
public class AerospikeCacheKey {

@Getter
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package org.springframework.data.aerospike.cache;

/**
* Interface that provides methods used in caching
*/
public interface AerospikeCacheKeyProcessor {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public class AerospikeCacheKeyProcessorImpl implements AerospikeCacheKeyProcessor {

@Getter
private static final Kryo kryoInstance = new Kryo();
private final Kryo kryoInstance = new Kryo();

public AerospikeCacheKeyProcessorImpl() {
configureKryo();
Expand Down

0 comments on commit ac3fff2

Please sign in to comment.