chaokunyang commented on issue #1945:
URL: https://github.com/apache/fury/issues/1945#issuecomment-2487237899
You disabled FURY JIT, the serialization will be slow:
```java
furyTest = Fury.builder()
.withLanguage(Language.JAVA)
.requireClassRegistration(false)
.withCodegen(false)
.withRefTracking(false)
.withAsyncCompilation(true)
.build();
```
please create fury like this:
```java
fury = Fury.builder()
.withLanguage(Language.JAVA)
.withRefTracking(false)
.build();
```
And register all the types, please don't disable class registration:
```java
fury.register(GrpcService.ModelInferRequest.InferInputTensor.class);
fury.register(GrpcService.ModelInferRequest.class);
fury.register(GrpcService.InferTensorContents.class);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]