SimFG

Results 402 comments of SimFG

@ahrtr I didn't find a solution to this problem. At first I thought it was because `tx` did not call the begin method, which caused the error that `tx` was...

Confirmed the problem with @congqixia, get the following conclusions. The querycoord processing task is a serial queue. The reason for the problem is that the load has not been executed,...

``` mock.ExpectQuery(regexp.QuoteMeta("SELECT * FROM `bar` WHERE id = ?")). WithArgs(2). WillReturnRows(barRows) ``` change to: ``` mock.ExpectQuery(regexp.QuoteMeta("SELECT * FROM `bar` WHERE `bar`.`id` = ?"")). WithArgs(2). WillReturnRows(barRows) ```

Thanks for your suggestion, he will be included in our plan, of course we also welcome contributions.

@Torhamilton Thanks your attention. I need some time to understand Redis, and with a lot of recent work, I haven't had the opportunity to address this yet. 😫 If you're...

@vinvcn The redis will be supported in the next version, but async is not supported for now, because this part involves some refactoring

Optimize the initialization method of GPTCache, so that users can use GPTCache more quickly. @hwchase17 When you have free time, please give me a check for the pull request

@hwchase17 When you have a free time, please help me check it out

@oobabooga please help me check it if you think it's suitable this project

The questions don’t need to be exactly the same, just similar. If you are not satisfied with the cached answer, you can skip the cache so that you can get...