Ganna Shmatova

Results 6 issues of Ganna Shmatova

I think it might be because too many files... ![image](https://cloud.githubusercontent.com/assets/7226694/8381446/a9bb6228-1bf9-11e5-82f6-50e885874778.png)

ei, if I want to display disk usage. Used converts to 20 mb, max to 2tb. Be nice to be able to have them same unit. something like: ``` var...

enhancement

is it supported? Can it be supported?

TingoDB throws an error: ![image](https://cloud.githubusercontent.com/assets/17255871/14144492/eea29f5c-f65d-11e5-9977-261ed31a383a.png) ![image](https://cloud.githubusercontent.com/assets/17255871/14144503/f68e1f7a-f65d-11e5-9621-b28039006a83.png) Tried get with search query: ``` js { Users: /^Admin$/i, Permissions: /^add \/ remove \/ modify users$/i } ``` and ``` js { Users:...

Should work in mongo: https://docs.mongodb.org/manual/reference/operator/query/regex/#in-expressions ``` js this.db.collection('user').find({ //returns [] Username: {$in: [new RegExp('^'+escape('Admin')+'$', 'i')]} }, {}).toArray(function(err, data){ log.trace(err); log.trace(data); }); this.db.collection('user').find({ //returns correct record Username: new RegExp('^'+escape('Admin')+'$', 'i') },...

Oddly. I did a small interface around tingodb for my app's purposes, and this stacktrace happened during a simple get test: ![image](https://cloud.githubusercontent.com/assets/7226694/11545036/0f37757e-9913-11e5-8571-e17f8c4e8362.png) Call: ``` js this.db.collection(this.name).find(search, {w: 1}).toArray(cb); ``` To...