Emanuele Castelli

Results 9 comments of Emanuele Castelli

@sergiocastrovale Thx, it works very well, but it is veeeeeeeeery slow (due to subqueries i think). Don't you know if there is a more optimized solution for pivot search out...

FYI, i have a lot of relations hasmany and manytomany with thousands records each...maybe that is the cause of slowness (in combination with subqueries)

@sergiocastrovale using straight eloquent methods dramatically speed up queries. Now i'm using whereHas, orWhereHas, etc. and mysql took 1.3 seconds, whereas with searchable i have to wait 12-13 seconds... I've...

Sure, here the code: ``` php $term = Input::get('term') . '%'; $items = Item::with('subject', 'type') ->orWhereHas('subject', function ($query) use ($term) { $query->where('nome', 'LIKE', $term); }) ->orWhereHas('author', function ($query) use ($term)...

thx so much @jarektkaczyk i will try it soon

> And in addition to the above, @slycoder, why are the min and max FPS values hardcoded over here? > > https://github.com/blackuy/react-native-twilio-video-webrtc/blob/09a2c610dba40fb4dbaab3a0921a42dd42b8d054/android/src/main/java/com/twiliorn/library/CustomTwilioVideoView.java#L185 > > I feel that that should be...

Here same issue: i get randomly `Token Signature could not be verified. ` (but token validation performed with jwt debugger are correct). Here the stack: ``` Tymon\JWTAuth\Exceptions\TokenInvalidException Token Signature could...