- 5 resultados
menor preço: € 64.03, preço mais alto: € 111.22, preço médio: € 89.18
1
The Design and Implementation of a Log-structured file system - Rosenblum, Mendel
Encomendar
no/na Achtung-Buecher.de
€ 111.22
Envio: € 0.001
EncomendarLink patrocinado
Rosenblum, Mendel:

The Design and Implementation of a Log-structured file system - encadernada, livro de bolso

1994, ISBN: 0792395417

1995 Gebundene Ausgabe Datenverarbeitung / Datenverschlüsselung, Kryptografie, Programmiersprachen, Prozessor / Mikroprozessor, Algorithmen und Datenstrukturen, Compiler und Übersetzer,… mais…

Custos de envio:Versandkostenfrei innerhalb der BRD. (EUR 0.00) MARZIES.de Buch- und Medienhandel, 14621 Schönwalde-Glien
2
The Design and Implementation of a Log-structured file system - Rosenblum, Mendel
Encomendar
no/na booklooker.de
€ 68.14
Envio: € 0.001
EncomendarLink patrocinado

Rosenblum, Mendel:

The Design and Implementation of a Log-structured file system - livro usado

1994, ISBN: 9780792395416

[PU: Springer US], 1360639/1 Altersfreigabe FSK ab 0 Jahre, DE, [SC: 0.00], gebraucht; sehr gut, gewerbliches Angebot, 1995, Banküberweisung, Kreditkarte, PayPal, Internationaler Versand

Custos de envio:Versandkostenfrei, Versand nach Deutschland. (EUR 0.00) Buchpark GmbH
3
The Design and Implementation of a Log-structured file system - Rosenblum, Mendel
Encomendar
no/na booklooker.de
€ 95.51
Envio: € 0.001
EncomendarLink patrocinado
Rosenblum, Mendel:
The Design and Implementation of a Log-structured file system - livro usado

1994

ISBN: 9780792395416

[PU: Springer US], 1360639/1 Altersfreigabe FSK ab 0 Jahre, DE, [SC: 0.00], gebraucht; sehr gut, gewerbliches Angebot, 1995, PayPal, Klarna-Sofortüberweisung, Internationaler Versand

Custos de envio:Versandkostenfrei, Versand nach Deutschland. (EUR 0.00) Buchpark GmbH
4
The Design and Implementation of a Log-structured file system  1995 - Mendel Rosenblum
Encomendar
no/na buchfreund.de
€ 64.03
Envio: € 0.001
EncomendarLink patrocinado
Mendel Rosenblum:
The Design and Implementation of a Log-structured file system 1995 - livro usado

1994, ISBN: 9780792395416

1995 Gepflegter, sauberer Zustand. 1360639/2 Versandkostenfreie Lieferung, [PU:Springer US,]

Custos de envio:Versandkostenfrei innerhalb der BRD. (EUR 0.00) Buchpark GmbH, 14959 Trebbin
5
The Design and Implementation of a Log-structured file system - Mendel Rosenblum
Encomendar
no/na lehmanns.de
€ 106.99
Envio: € 0.001
EncomendarLink patrocinado
Mendel Rosenblum:
The Design and Implementation of a Log-structured file system - encadernada, livro de bolso

1994, ISBN: 9780792395416

Buch, Hardcover, 1995 ed. [PU: Springer], Springer, 1994

Custos de envio:Versand in 10-14 Tagen. (EUR 0.00)

1Como algumas plataformas não transmitem condições de envio e estas podem depender do país de entrega, do preço de compra, do peso e tamanho do item, de uma possível adesão à plataforma, de uma entrega direta pela plataforma ou através de um fornecedor terceirizado (Marketplace), etc., é possível que os custos de envio indicados pela terralivro não correspondam aos da plataforma ofertante.

Dados bibliográficos do melhor livro correspondente

Pormenores referentes ao livro
The Design and Implementation of a Log-structured file system

The Design and Implementation of a Log-Structured File System presents a new technique for disk storage management. A log-structured file system writes all modifications to disk sequentially in a log-like structure, thereby speeding up both file writing and crash recovery. The log is the only structure on disk; it contains indexing information so that files can be read back from the log efficiently. In order to maintain large free areas on disk for fast writing, the log is divided into segments and a segment cleaner to compress the live information from heavily fragmented segments. This book presents a series of simulations that demonstrate the efficiency of a simple cleaning policy based on cost and benefit. The author has implemented a prototype log-structured file system called Sprite LFS; it outperforms current Unix file systems by an order of magnitude for small-file writes while matching or exceeding Unix performance for reads and large writes. Even when the overhead for cleaning is included, Sprite LFS can use 70% of the disk bandwidth for writing, whereas Unix file systems typically can use only 5--10%. The Design and Implementation of a Log-Structured File System demonstrates how a log-structured file system can be used more efficiently than existing file systems. This new system is well suited to the technology facing the disk storage manager.

Dados detalhados do livro - The Design and Implementation of a Log-structured file system


EAN (ISBN-13): 9780792395416
ISBN (ISBN-10): 0792395417
Livro de capa dura
Ano de publicação: 2007
Editor/Editora: Springer
144 Páginas
Peso: 0,391 kg
Língua: eng/Englisch

Livro na base de dados desde 2007-10-31T12:32:19-02:00 (Sao Paulo)
Página de detalhes modificada pela última vez em 2024-03-03T07:31:25-03:00 (Sao Paulo)
Número ISBN/EAN: 0792395417

Número ISBN - Ortografia alternativa:
0-7923-9541-7, 978-0-7923-9541-6
Ortografia alternativa e termos de pesquisa relacionados:
Autor do livro: rosenblum, mendel
Título do livro: engineering system design, international, log, the file


Dados da editora

Autor: Mendel Rosenblum
Título: The Springer International Series in Engineering and Computer Science; The Design and Implementation of a Log-structured file system
Editora: Springer; Springer US
132 Páginas
Ano de publicação: 1994-12-31
New York; NY; US
Língua: Inglês
106,99 € (DE)
109,99 € (AT)
118,00 CHF (CH)
Available
XII, 132 p.

BB; Hardcover, Softcover / Informatik, EDV/Informatik; Algorithmen und Datenstrukturen; Verstehen; Data Structures and Information Theory; Compilers and Interpreters; Processor Architectures; Informationstheorie; Compiler und Übersetzer; Rechnerarchitektur und Logik-Entwurf; BC

1 Introduction.- 2 Disk Storage Manager Design.- 3 Motivation.- 4 Log-structured file systems.- 5 Sprite LFS cleaning policies.- 6 Experience with Sprite LFS.- 7 Related work.- 8 Conclusion.- 1 Index.

Outros livros adicionais, que poderiam ser muito similares com este livro:

Último livro semelhante:
9781461359333 The Design and Implementation of a Log-structured file system (Mendel Rosenblum)


< Para arquivar...