Commit graph

10 commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
6972636b98 - Update to 1.9.0
Changes:	http://code.google.com/p/leveldb/source/list
2013-01-30 16:49:44 +00:00
Sunpoet Po-Chuan Hsieh
9dc70edf6c - Update to 1.7.0
- Cleanup Makefile header

Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=40768657bc8ec3ded60712eeeab7c25b1b07deca
		http://code.google.com/p/leveldb/source/detail?r=946e5b5a4ce7980917b22a408f090a4e86c3fa44
Feature safe:	yes
2012-12-05 00:47:56 +00:00
Sunpoet Po-Chuan Hsieh
cee7b9cafe - Convert to new options framework
- Rename option PERFTOOLS to GPERFTOOLS to match the project name
2012-06-19 13:00:47 +00:00
Sunpoet Po-Chuan Hsieh
541c36a3e9 - Update to 1.5.0
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=dd0d562b4d4fbd07db6a44f9e221f8d368fee8e4
		http://code.google.com/p/leveldb/source/detail?r=b914f91b1049699aa2d0e08660aa9246b87bdcb7
		http://code.google.com/p/leveldb/source/detail?r=075a35a6d390167b77b687e067dd0ba593e7f624
		http://code.google.com/p/leveldb/source/detail?r=85584d497e7b354853b72f450683d59fcf6b9c5c
		http://code.google.com/p/leveldb/source/detail?r=bc1ee4d25e09b04e074db330a41f54ef4af0e31b
		http://code.google.com/p/leveldb/source/detail?r=a1ad4d1995dc8efeb0d3d7a40b8bb63c9b7c8259
Submitted by:	vanilla
2012-06-16 20:21:57 +00:00
Sunpoet Po-Chuan Hsieh
b29ccfdff0 - Update to 1.2.20120315
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=9013f13b1512f6ab8c04518e8f036e58be271eba
		http://code.google.com/p/leveldb/source/detail?r=583f1499c00ff40f332149021f583cf6ee78dd7e
		http://code.google.com/p/leveldb/source/detail?r=d79762e27369365a7ffe1f2e3a5c64b0632079e1
		http://code.google.com/p/leveldb/source/detail?r=015d26f8be6e27d96c536eb9f1ef7275898e3603
		http://code.google.com/p/leveldb/source/detail?r=239ac9d2dea0ac1708b7d903a3d80d3883e0781b
		http://code.google.com/p/leveldb/source/detail?r=3c8be108bfb5fbd7d51f824199627e757279f79e
Feature safe:	yes
2012-03-16 16:27:49 +00:00
Sunpoet Po-Chuan Hsieh
675bdb9537 - Update to 1.2.20111130
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=c8c5866a86c8d4a3e80d8708d14a06776fb683d1
Feature safe:	yes
2011-12-07 14:04:16 +00:00
Mark Linimon
959aab7a08 Mark as not for powerpc: #error Please implement AtomicPointer for this
platform.

Hat:		portmgr
Feature safe:	yes
2011-11-23 04:04:21 +00:00
Sunpoet Po-Chuan Hsieh
65dd136eb0 - Update to 1.2.20111114
Changes:	http://code.google.com/p/leveldb/source/list
		http://code.google.com/p/leveldb/source/detail?r=42fb47f6edab02d4abb814631c6615dd4661d7d2
		http://code.google.com/p/leveldb/source/detail?r=36a5f8ed7f9fb3373236d5eace4f5fea369856ee
Feature safe:	yes
2011-11-21 09:01:06 +00:00
Sunpoet Po-Chuan Hsieh
c2cfef1d88 - Fix snappy detection
- Turn off PERFTOOLS by default
- Pet portlint
- Bump PORTREVISION for dependency change
2011-10-28 14:18:06 +00:00
Sunpoet Po-Chuan Hsieh
65aafbcdb6 - Add leveldb 1.2.20111024
LevelDB is a fast key-value storage library written at Google that provides an
ordered mapping from string keys to string values.

Features:
- Keys and values are arbitrary byte arrays.
- Data is stored sorted by key.
- Callers can provide a custom comparison function to override the sort order.
- The basic operations are Put(key,value), Get(key), Delete(key).
- Multiple changes can be made in one atomic batch.
- Users can create a transient snapshot to get a consistent view of data.
- Forward and backward iteration is supported over the data.
- Data is automatically compressed using the Snappy compression library.
- External activity (file system operations etc.) is relayed through a virtual
  interface so users can customize the operating system interactions.
- Detailed documentation about how to use the library is included with the
  source code.

Limitations:
- This is not a SQL database. It does not have a relational data model, it does
  not support SQL queries, and it has no support for indexes.
- Only a single process (possibly multi-threaded) can access a particular
  database at a time.
- There is no client-server support builtin to the library. An application that
  needs such support will have to wrap their own server around the library.

WWW: http://code.google.com/p/leveldb/
2011-10-28 10:54:30 +00:00