Re: new String(byte[]) performance

Поиск
Список
Период
Сортировка
От Aaron Mulder
Тема Re: new String(byte[]) performance
Дата
Msg-id Pine.LNX.4.44.0210202345510.29694-100000@www.princetongames.org
обсуждение исходный текст
Ответ на Re: new String(byte[]) performance  (Teofilis Martisius <teo@teohome.lzua.lt>)
Список pgsql-jdbc
On Mon, 21 Oct 2002, Teofilis Martisius wrote:
> The things that take up most time now is transferring everything over
> network (PG_Stream.receiveTuple if i remember correctly) and allocating
> memmory for byte[] arrays. But I don't know any way to speed them up.

    There is probably room for improvement here under JDK 1.4, if we
want to get really fancy.  I think we could manipulate IO buffers to read
directly from the network into byte arrays, rather than reading in from
the network at the hardware level, allocating a new buffer in the program,
and then copying the data from the network buffer to the program buffer.
    But of course, IANAIOGuy; I've never actually tried that... :)

Aaron


В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Teofilis Martisius
Дата:
Сообщение: Re: new String(byte[]) performance
Следующее
От: Jean-Christian Imbeault
Дата:
Сообщение: null: was is the default returned value?