Giter VIP home page Giter VIP logo

Comments (3)

 avatar commented on July 19, 2024

From [email protected] on April 22, 2010 13:04:52

Line 2 will return a buffer size of "bufferSize" bytes. The bufferSize value comes
from the Compressor constructor, which is 2048 if not otherwise specified. Please
specify a larger buffer size for your compressor.

Compressor does not currently support automatically growing the buffer size. Let me
know if this is necessary and I will reopen this issue. If this were to be
implemented, it would work just like ObjectBuffer.

Status: Invalid

from kryo.

 avatar commented on July 19, 2024

From [email protected] on April 22, 2010 16:04:30

The difficulty is that my code doesn't constuct or invoke the compressor directly.
My code calls Kryo.writeClassAndObject(), which apparently constucts and invokes a
ByteArrayCompressor within this call using the default 'bufferSize' of 2048.

Making it so that the buffer can grow like ObjectBuffer might be ultimately the most
efficient option, I don't know how Kryo works well enough yet to say. But it seems
to me that since the problem with the above code is such a minor thing it would be
worth fixing this in the mean time.

Perhaps:

public void compress (ByteBuffer inputBuffer, Object object, ByteBuffer
outputBuffer) {
Context context = Kryo.getContext();
int inputLength = inputBuffer.remaining();
byte[] inputBytes = context.getBuffer(Math.max(bufferSize,inputLength)).array();
inputBuffer.get(inputBytes, 0, inputLength);
compress(inputBytes, inputLength, outputBuffer);
}

from kryo.

 avatar commented on July 19, 2024

From [email protected] on April 23, 2010 11:57:22

Kryo will never use a compressor automatically, so someone has to be setting it up.

Ah, your proposed fix is a good improvement, thanks! In SVN r103.

Status: Fixed

from kryo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.