pgte / alfred

Node is your mansion, Alfred is your butler. Node.js key-value store
http://pgte.github.com/alfred/
MIT License
149 stars 10 forks source link

alfred support glob-style patterns?? #23

Open cocodrino opened 11 years ago

cocodrino commented 11 years ago

Hi!!..I'm using redis for a small app,,,now but I need a db which can be embedded...I'm using a lot glob-style patterns like:

h?llo matches hello, hallo and hxllo h*llo matches hllo and heeeello h[ae]llo matches hello and hallo, but not hillo

alfred support it??...thanks!!!!......

pgte commented 11 years ago

Alfred supports all these with the in-memory indexes (not much tricks here, you're doing all of these in RAM with JS functions). If in-memory indexes are not for you, don't go with alfred. Also, if you're looking into embedded DBs I'd look into some existing leveldb bindings.

Pedro

On Friday, December 7, 2012 at 10:45 PM, cocodrino wrote:

Hi!!..I'm using redis for a small app,,,now but I need a db which can be embedded...I'm using a lot glob-style patterns like: h?llo matches hello, hallo and hxllo h*llo matches hllo and heeeello h[ae]llo matches hello and hallo, but not hillo
alfred support it??...thanks!!!!.....

— Reply to this email directly or view it on GitHub (https://github.com/pgte/alfred/issues/23).