This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-shade-plugin</artifactId> | |
| <version>1.6</version> | |
| <executions> | |
| <execution> | |
| <phase>package</phase> | |
| <goals> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.netty.example.http.snoop; | |
| import static io.netty.handler.codec.http.HttpHeaders.getHost; | |
| import static io.netty.handler.codec.http.HttpHeaders.isKeepAlive; | |
| import static io.netty.handler.codec.http.HttpHeaders.Names.CONNECTION; | |
| import static io.netty.handler.codec.http.HttpHeaders.Names.CONTENT_LENGTH; | |
| import static io.netty.handler.codec.http.HttpHeaders.Names.CONTENT_TYPE; | |
| import static io.netty.handler.codec.http.HttpHeaders.Names.COOKIE; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.HashMap; | |
| import java.util.Map; | |
| import redis.clients.jedis.Jedis; | |
| public class TestJedis { | |
| public static void main(String[] args) { | |
| String key = "mostUsedLanguages"; | |
| Jedis jedis = new Jedis("localhost"); | |
| //Adding a value with score to the set |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function throttle( fn, time ) { | |
| var t = 0; | |
| return function() { | |
| var args = arguments, ctx = this; | |
| clearTimeout(t); | |
| t = setTimeout( function() { | |
| fn.apply( ctx, args ); | |
| }, time ); | |
| }; |