mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-17 02:58:48 +00:00
This is easier, clearer, faster for inters, and ultimately not really much less space efficient than trying to store this in a serialized nor unreasonably slow for retrievals. Food for thought: Would this might be well-suited to a nosql database?
12 lines
408 B
Java
12 lines
408 B
Java
import com.amazonaws.services.lambda.runtime.Context;
|
|
import com.amazonaws.services.lambda.runtime.RequestHandler;
|
|
|
|
import java.util.Map;
|
|
|
|
public class SearchHistoryPOST implements RequestHandler<Map<String,Object>, Object> {
|
|
|
|
public Object handleRequest(Map<String, Object> inputMap, Context unfilled) {
|
|
return BasicHandler.handleRequest(inputMap, unfilled, SearchHistoryUpdater.class);
|
|
}
|
|
}
|