Doyung Yoon

Results 21 issues of Doyung Yoon

PR to master. now our master is same with apache master.

Add util class DeferCache[T] to generalize future cache a little bit, and change fetch method and reflect caller(AsynchbaseQueryBuilder) to use this util class instead of manually mutating guava cache.

since toEdge is called lots of times, we think it is worth to optimize. This is what @daewon reported ![2016-03-22 7 35 00](https://cloud.githubusercontent.com/assets/1264825/13953110/9085dab4-f07d-11e5-85ea-f4f691842428.png) based on profile, we can notice that...

mysql have license issue with apache. based on http://www.apache.org/legal/resolved.html, changing default jdbc from mysql into postgresql. user including ourself should download mysql driver and include them. also override default db.default.driver...

## step to reproduce. ### create service. ``` curl -XPOST localhost:9000/graphs/createService -H 'Content-Type: Application/json' -d ' {"serviceName": "s2graph-test"} ' ``` ### create label. ``` curl -XPOST alpha-s2graph.daumkakao.io:9000/graphs/createLabel -H 'Content-Type: Application/json'...

bug

currently s2core provide local cache to reduce I/O requests to storage(HBase). This means even if we hit on cache, we still use lots of cpu to build result json through...

enhancement

I want to discuss about geoshape data type support in S2Graph. following is personal opinion what is necessary. - Geohash - Point - Circle - Box Personally, I think most...

enhancement

Currently root project is rest server that get json query and return json result on play framework. Play framework is great, but simple benchmark when there is no delay from...

Current implementation only use local cache. it would be better to abstract cache interface and let user to implement their own cache. for example, if user want to use redis...