I hereby claim:
- I am sdebnath on github.
- I am sdebnath (https://keybase.io/sdebnath) on keybase.
- I have a public key whose fingerprint is 7B6A 66DC 11D5 6398 C65B 3036 6851 6518 F3D6 BAF8
To claim this, I am signing this object:
#!/bin/sh | |
# Copyright (c) 2015, Shawn Debnath. All rights reserved. | |
# | |
# Redistribution and use in source and binary forms, with or without modification, | |
# are permitted provided that the following conditions are met: | |
# | |
# 1. Redistributions of source code must retain the above copyright notice, this | |
# list of conditions and the following disclaimer. | |
# |
This gist captures what needs to be done to add a new field to Riak's Yokozuna | |
search index. | |
Sources: | |
- https://github.com/basho/yokozuna/issues/130 | |
- http://riak-users.197444.n3.nabble.com/How-to-update-existed-schema-td4032143.html | |
The code below is for illustration purposes only. Use at your own risk. | |
1. Create/Update new schema file |
I hereby claim:
To claim this, I am signing this object:
%%============================================================================== | |
%% Mergesort implementation in Erlang | |
%% | |
%% Author: Shawn Debnath | |
%%============================================================================== | |
%%---------------------------------------------------------------------- | |
%% msort/1 | |
%% | |
%% Mergesort (recursive), implements split and merge. |
%%============================================================================== | |
%% Quicksort implementation in Erlang | |
%% | |
%% Author: Shawn Debnath | |
%%============================================================================== | |
%%---------------------------------------------------------------------- | |
%% qsort_r/1 | |
%% | |
%% Recursive quicksort |