반응형
반응형

RocksDB: Persistent key-value store for fast storage http://ow.ly/2BzPfY

 

RocksDB: Persistent key-value store for fast storage

Embedded key-value store for fast storage

rocksdb

Homepage: http://rocksdb.org/
GitHub: https://github.com/facebook/rocksdb
Docs: http://rocksdb.org/overview.html

 

 

The rocksdb library provides a persistent key value store. Keys and values are arbitrary byte arrays. The keys are ordered within the key value store according to a user-specified comparator function.

The library is maintained by the Facebook Database Engineering Team, and is based on leveldb, by Sanjay Ghemawat and Jeff Dean at Google.

This overview gives some simple examples of how RocksDB is used. For the story of why RocksDB was created in the first place, see Dhruba Borthakur's introductory talk from the Data @ Scale 2013 conference.

 

 

 

반응형
반응형

 

 

 

 

 

 

 

 

성공하는 삶의 비결은 무엇을 하는 것이 자신의 운명인지 발견하고, 그것을 행하는 것이다. - 핸리 포드 -

 

 

 

 

 

 

 

 

 

 

 

 

 

.

반응형
반응형

 

 

 

 

 

 

 

 

 

 

 " 지금이 가장 나쁜 때이다" 라고 말할 수 있는 때는 가장 나쁜 때가 아니다. - 셰익스피어作 <리어왕> 中 -

 

 

 

 

 

 

 

 

 

 

.

 

리어왕
국내도서
저자 : 윌리엄 셰익스피어(William Shakespeare) / 최종철역
출판 : 민음사 2005.11.20
상세보기

 

 

반응형
반응형

성공은 당신이 뜻하는 바를 성취하는 것이 아니라
당신이 성취할 것을 목표로 정한 다음에
그것을 이 세상에서 최대한 노력하다가 안되면
다음 세상에서라도 꼭 성취하고 말겠다는 확신을 품고
노력하며 앞으로 나아가는 것이다.
- 로버트 포먼 호턴

 

목표하는 것을 성취했느냐 하는 것이 아닌,
진정으로 가치 있는, 내 소명을 다할 수 있는 목표를 찾았느냐?
그리고 그것을 위해 끝없이 도전하는 삶을 살았느냐?
하는 것이 성공적인 인생의 척도라 할 수 있습니다.

 

반응형
반응형

할 일의 발견


웅덩이가 가득 차고
흐르기를 그치면 썩듯이,
한 민족의 마음이 사명감을 잃어버리면
망하고 만다. 반대로 아직도 바라는 이상이 있고,
자부하는 사명이 있으면 결코 망하지 않는다.
살고 싶거든 할 일을 발견해 내어라.
사명의 자각이야말로 재생의
원동력이다.


- 함석헌의《뜻으로 본 한국역사》중에서 -


* 할 일이 태산인데도
할 일을 모르는 경우가 참 많습니다.
무엇을 해야할지 몰라 우왕좌왕 합니다.
방향도 목표도 없이 표류하다 시간을 놓칩니다.
내가 해야할 일의 발견이 첫 출발점입니다.
여기에 이상과 사명감까지 더해지면
위대한 시작점으로 바뀝니다.

뜻으로 본 한국역사
국내도서
저자 : 함석헌
출판 : 한길사 2003.04.20
상세보기

 




 

반응형

'아침편지' 카테고리의 다른 글

부모가 찌르는 비수  (0) 2013.11.21
가을이 떠나려합니다  (0) 2013.11.20
잠이 오지 않는 밤  (0) 2013.11.18
엄.마.라는 두 글자  (0) 2013.11.16
불사신  (0) 2013.11.15
반응형

Web.go: Create web applications with Go

Framework - Web Application/Added on November 17, 2013/Add to favorites

Web.go is an easy way to create web applications using Go, a lightweight web app framework that doesn’t impose any kind of scaffolding on the user. It’s great for creating simple, performant backend web services.

webgo

 

 

web.go

web.go is the simplest way to write web applications in the Go programming language. It's ideal for writing simple, performant backend web services.

Overview

web.go should be familiar to people who've developed websites with higher-level web frameworks like sinatra or web.py. It is designed to be a lightweight web framework that doesn't impose any scaffolding on the user. Some features include:

  • Routing to url handlers based on regular expressions
  • Secure cookies
  • Support for fastcgi and scgi
  • Web applications are compiled to native code. This means very fast execution and page render speed
  • Efficiently serving static files

 

 

 

반응형

+ Recent posts